abbadon1334/atk4-fastroute

View on GitHub
demos/config/routes-exception.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Abbadon1334\ATKFastRoute\Demos;

// DO NOT USE THIS
// is used only to trigger exception in PHUNIT Test

return [
    [
        '/routed_static',
        ['GET', 'POST'],
        ['function_not_exists_will_throw_exception'],
    ],
];