]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - 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
... / ...
CommitLineData
1<?php
2
3function test_route_invalid_register_routes(): array
4{
5 return [
6 [
7 'method' => 'GET',
8 'route' => 'not a route',
9 'callable' => 'getFunction',
10 ],
11 ];
12}