mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Updating Components to use Component as the parent class.
This commit is contained in:
parent
bf75ab5737
commit
256532b8e4
6 changed files with 6 additions and 6 deletions
|
@ -31,7 +31,7 @@
|
|||
* @subpackage cake.cake.libs.controller.components
|
||||
* @link http://book.cakephp.org/view/1242/Access-Control-Lists
|
||||
*/
|
||||
class AclComponent extends Object {
|
||||
class AclComponent extends Component {
|
||||
|
||||
/**
|
||||
* Instance of an ACL class
|
||||
|
|
|
@ -31,7 +31,7 @@ App::import('Core', array('Router', 'Security'), false);
|
|||
* @subpackage cake.cake.libs.controller.components
|
||||
* @link http://book.cakephp.org/view/1250/Authentication
|
||||
*/
|
||||
class AuthComponent extends Object {
|
||||
class AuthComponent extends Component {
|
||||
|
||||
/**
|
||||
* Maintains current user login state.
|
||||
|
|
|
@ -33,7 +33,7 @@ App::import('Core', 'Security');
|
|||
* @link http://book.cakephp.org/view/1280/Cookies
|
||||
*
|
||||
*/
|
||||
class CookieComponent extends Object {
|
||||
class CookieComponent extends Component {
|
||||
|
||||
/**
|
||||
* The name of the cookie.
|
||||
|
|
|
@ -30,7 +30,7 @@ App::import('Core', 'Multibyte');
|
|||
* @link http://book.cakephp.org/view/1283/Email
|
||||
*
|
||||
*/
|
||||
class EmailComponent extends Object{
|
||||
class EmailComponent extends Component {
|
||||
|
||||
/**
|
||||
* Recipient of the email
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
* @link http://book.cakephp.org/view/1291/Request-Handling
|
||||
*
|
||||
*/
|
||||
class RequestHandlerComponent extends Object {
|
||||
class RequestHandlerComponent extends Component {
|
||||
|
||||
/**
|
||||
* The layout that will be switched to for Ajax requests
|
||||
|
|
|
@ -26,7 +26,7 @@ App::import('Core', array('String', 'Security'));
|
|||
* @subpackage cake.cake.libs.controller.components
|
||||
* @link http://book.cakephp.org/view/1296/Security-Component
|
||||
*/
|
||||
class SecurityComponent extends Object {
|
||||
class SecurityComponent extends Component {
|
||||
|
||||
/**
|
||||
* The controller method that will be called if this request is black-hole'd
|
||||
|
|
Loading…
Add table
Reference in a new issue