Files
spa-api/tests/Fixtures/RouteLoader/routes/user.php

15 lines
154 B
PHP
Raw Normal View History

2011-10-26 22:27:19 -05:00
<?php
return array(
'GET /user' => function()
{
return 'GET /user';
},
'GET /user/profile' => function()
{
return 'GET /user/profile';
},
);