]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tests/plugins/test_route_invalid/test_route_invalid.php
Merge pull request #1645 from ArthurHoaro/feature/plugin-register-route
[github/shaarli/Shaarli.git] / tests / plugins / test_route_invalid / test_route_invalid.php
CommitLineData
a6e9c084
A
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}