for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright 2016 - 2018, Cake Development Corporation (http://cakedc.com)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
* @copyright Copyright 2016 - 2018, Cake Development Corporation (http://cakedc.com)
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace CakeDC\Api\Test\App\Controller;
require ROOT . DS . 'tests' . DS . 'Config' . DS . 'bootstrap.php';
use Cake\Controller\Controller;
* This is a placeholder class.
* Create the same file in app/Controller/AppController.php
* Add your application-wide methods in the class below, your controllers
* will inherit them.
class AppController extends Controller
{
public function initialize()
parent::initialize();
$this->loadComponent('Flash');
$this->loadComponent('CakeDC/Users.UsersAuth');
$this->loadComponent('RequestHandler');
}