mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Merge pull request #3224 from dereuromark/master-deprecations
correct deprecation notices
This commit is contained in:
commit
c92769c980
2 changed files with 1 additions and 1 deletions
|
@ -1075,7 +1075,6 @@ class Controller extends Object implements CakeEventListener {
|
|||
* @param array $whitelist List of allowed options for paging
|
||||
* @return array Model query results
|
||||
* @link http://book.cakephp.org/2.0/en/controllers.html#Controller::paginate
|
||||
* @deprecated Will be removed in 3.0. Use PaginatorComponent instead.
|
||||
*/
|
||||
public function paginate($object = null, $scope = array(), $whitelist = array()) {
|
||||
return $this->Components->load('Paginator', $this->paginate)->paginate($object, $scope, $whitelist);
|
||||
|
|
|
@ -23,6 +23,7 @@ App::uses('Hash', 'Utility');
|
|||
* Class used for manipulation of arrays.
|
||||
*
|
||||
* @package Cake.Utility
|
||||
* @deprecated Will be removed in 3.0. Use Hash instead.
|
||||
*/
|
||||
class Set {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue