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