2010-12-15 03:58:27 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Routes file
|
|
|
|
*
|
|
|
|
* Routes for test app
|
|
|
|
*
|
2017-06-10 21:33:55 +00:00
|
|
|
* CakePHP : Rapid Development Framework (https://cakephp.org)
|
2017-06-10 22:10:52 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2010-12-15 03:58:27 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-12-15 03:58:27 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2017-06-10 22:10:52 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
2017-06-10 21:33:55 +00:00
|
|
|
* @link https://cakephp.org CakePHP Project
|
2013-05-30 22:11:14 +00:00
|
|
|
* @package Cake.Test.TestApp.Config
|
2010-12-15 03:58:27 +00:00
|
|
|
* @since CakePHP v 2.0
|
2017-06-10 22:23:14 +00:00
|
|
|
* @license https://opensource.org/licenses/mit-license.php MIT License
|
2010-12-15 03:58:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
Router::parseExtensions('json');
|
|
|
|
Router::connect('/some_alias', array('controller' => 'tests_apps', 'action' => 'some_method'));
|