$this->paginate = array(
'limit' => 5,
'conditions' => ''
);
$this->paginate['conditions'] = array(
'name LIKE' => '%a'
);
and them notice:
Notice (8): Indirect modification of overloaded property EmployeeCvsController::$paginate has no effect [APP\Controller\EmployeeCvsController.php, line 137]
Could someone explain me why I can't change order element from array?