FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Infrastructure
/
Routes
/
Test
Edit File: Test.php
<?php /** * @copyright © TMS-Plugins. All rights reserved. * @licence See COPYING.md for license details. */ namespace AmeliaBooking\Infrastructure\Routes\Test; use AmeliaBooking\Application\Controller\Test\TestController; use Slim\App; /** * Class Test * * @package AmeliaBooking\Infrastructure\Routes\Test */ class Test { /** * @param App $app */ public static function routes(App $app) { $app->get('/test', TestController::class); } }
Save
Back