Deprecated (16384): Controller::$layout is deprecated. Use $this->viewBuilder()->layout() instead. [CORE/src/Controller/Controller.php, line 375]
// In a controller, instead of
$this->layout = 'advanced';
// You should use
$this->viewBuilder()->layout('advanced');
ついでに
$this->layout = 'ajax';
↓
$this->viewBuilder()->layout('ajax');
<参照>
http://book.cakephp.org/3.0/en/appendices/3-1-migration-guide.html
// In a controller, instead of
$this->layout = 'advanced';
// You should use
$this->viewBuilder()->layout('advanced');
ついでに
$this->layout = 'ajax';
↓
$this->viewBuilder()->layout('ajax');
<参照>
http://book.cakephp.org/3.0/en/appendices/3-1-migration-guide.html
AD