Updating Components to use Component as the parent class.

This commit is contained in:
mark_story 2010-07-04 15:12:42 -04:00
parent bf75ab5737
commit 256532b8e4
6 changed files with 6 additions and 6 deletions

View file

@ -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

View file

@ -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.

View file

@ -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.

View file

@ -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

View file

@ -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

View file

@ -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