mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix missing 'r' from your
This commit is contained in:
parent
2fc2109742
commit
e16bef1868
2 changed files with 2 additions and 2 deletions
|
@ -611,7 +611,7 @@ class Controller extends Object implements CakeEventListener {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of all events that will fire in the controller during its lifecycle.
|
* Returns a list of all events that will fire in the controller during its lifecycle.
|
||||||
* You can override this function to add you own listener callbacks
|
* You can override this function to add your own listener callbacks
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -33,7 +33,7 @@ App::uses('CakePlugin', 'Core');
|
||||||
* CakePHP is organized around the idea of packages, each class belongs to a package or folder where other
|
* CakePHP is organized around the idea of packages, each class belongs to a package or folder where other
|
||||||
* classes reside. You can configure each package location in your application using `App::build('APackage/SubPackage', $paths)`
|
* classes reside. You can configure each package location in your application using `App::build('APackage/SubPackage', $paths)`
|
||||||
* to inform the framework where should each class be loaded. Almost every class in the CakePHP framework can be swapped
|
* to inform the framework where should each class be loaded. Almost every class in the CakePHP framework can be swapped
|
||||||
* by your own compatible implementation. If you wish to use you own class instead of the classes the framework provides,
|
* by your own compatible implementation. If you wish to use your own class instead of the classes the framework provides,
|
||||||
* just add the class to your libs folder mocking the directory location of where CakePHP expects to find it.
|
* just add the class to your libs folder mocking the directory location of where CakePHP expects to find it.
|
||||||
*
|
*
|
||||||
* For instance if you'd like to use your own HttpSocket class, put it under
|
* For instance if you'd like to use your own HttpSocket class, put it under
|
||||||
|
|
Loading…
Reference in a new issue