aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/plugins/test_route_invalid/test_route_invalid.php
blob: 0c5a51012dd65c051194f8513276907145edd970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

function test_route_invalid_register_routes(): array
{
    return [
        [
            'method' => 'GET',
            'route' => 'not a route',
            'callable' => 'getFunction',
        ],
    ];
}