]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/plugins/test_route_invalid/test_route_invalid.php
Plugin system: allow plugins to provide custom routes
[github/shaarli/Shaarli.git] / tests / plugins / test_route_invalid / test_route_invalid.php
1 <?php
2
3 function test_route_invalid_register_routes(): array
4 {
5 return [
6 [
7 'method' => 'GET',
8 'route' => 'not a route',
9 'callable' => 'getFunction',
10 ],
11 ];
12 }