Files
ponzi/tests/Fixtures/RouteLoader/routes/user.php
2011-10-26 22:27:19 -05:00

15 lines
154 B
PHP

<?php
return array(
'GET /user' => function()
{
return 'GET /user';
},
'GET /user/profile' => function()
{
return 'GET /user/profile';
},
);