| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.3.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace TestApp;
- use Cake\Http\BaseApplication;
- use Cake\Routing\Middleware\RoutingMiddleware;
- use Cake\Routing\RouteBuilder;
- use TestApp\Command\AbortCommand;
- class Application extends BaseApplication
- {
- /**
- * @return void
- */
- public function bootstrap()
- {
- parent::bootstrap();
- }
- /**
- * @param \Cake\Console\CommandCollection $commands
- *
- * @return \Cake\Console\CommandCollection
- */
- public function console($commands)
- {
- return $commands
- ->add('abort_command', new AbortCommand())
- ->addMany($commands->autoDiscover());
- }
- /**
- * @param \Cake\Http\MiddlewareQueue $middleware
- *
- * @return \Cake\Http\MiddlewareQueue
- */
- public function middleware($middleware)
- {
- $middleware->add(new RoutingMiddleware());
- $middleware->add(function ($req, $res, $next) {
- /** @var \Cake\Http\ServerRequest $res */
- $res = $next($req, $res);
- return $res->withHeader('X-Middleware', 'true');
- });
- return $middleware;
- }
- /**
- * Routes hook, used for testing with RoutingMiddleware.
- *
- * @param \Cake\Routing\RouteBuilder $routes
- * @return void
- */
- public function routes($routes)
- {
- $routes->scope('/app', function (RouteBuilder $routes) {
- $routes->connect('/articles', ['controller' => 'Articles']);
- });
- }
- }
|