Updated additional references of Cake to CakePHP

This commit is contained in:
Bryan Crowe 2013-09-27 21:31:35 -04:00
parent 3e8af8b180
commit bb65765d70
7 changed files with 11 additions and 11 deletions

View file

@ -2,7 +2,7 @@
/** /**
* This is core configuration file. * This is core configuration file.
* *
* Use it to configure core behaviour of Cake. * Use it to configure core behaviour of CakePHP.
* *
* PHP 5 * PHP 5
* *

View file

@ -2,7 +2,7 @@
/** /**
* This is email configuration file. * This is email configuration file.
* *
* Use it to configure email transports of Cake. * Use it to configure email transports of CakePHP.
* *
* PHP 5 * PHP 5
* *

View file

@ -1,6 +1,6 @@
<?php <?php
/** /**
* Application model for Cake. * Application model for CakePHP.
* *
* This file is application-wide model file. You can put all * This file is application-wide model file. You can put all
* application-wide model-related methods here. * application-wide model-related methods here.

View file

@ -114,7 +114,7 @@ class ShellDispatcher {
} }
/** /**
* Initializes the environment and loads the Cake core. * Initializes the environment and loads the CakePHP core.
* *
* @return boolean Success. * @return boolean Success.
*/ */

View file

@ -1,8 +1,8 @@
<?php <?php
/** /**
* Session class for Cake. * Session class for CakePHP.
* *
* Cake abstracts the handling of sessions. * CakePHP abstracts the handling of sessions.
* There are several convenient methods to access session information. * There are several convenient methods to access session information.
* This class is the implementation of those methods. * This class is the implementation of those methods.
* They are mostly used by the Session Component. * They are mostly used by the Session Component.
@ -27,9 +27,9 @@ App::uses('Hash', 'Utility');
App::uses('Security', 'Utility'); App::uses('Security', 'Utility');
/** /**
* Session class for Cake. * Session class for CakePHP.
* *
* Cake abstracts the handling of sessions. There are several convenient methods to access session information. * CakePHP abstracts the handling of sessions. There are several convenient methods to access session information.
* This class is the implementation of those methods. They are mostly used by the Session Component. * This class is the implementation of those methods. They are mostly used by the Session Component.
* *
* @package Cake.Model.Datasource * @package Cake.Model.Datasource
@ -444,7 +444,7 @@ class CakeSession {
} }
/** /**
* Helper method to initialize a session, based on Cake core settings. * Helper method to initialize a session, based on CakePHP core settings.
* *
* Sessions can be configured with a few shortcut names as well as have any number of ini settings declared. * Sessions can be configured with a few shortcut names as well as have any number of ini settings declared.
* *

View file

@ -23,7 +23,7 @@
App::uses('HttpSocket', 'Network/Http'); App::uses('HttpSocket', 'Network/Http');
/** /**
* XML handling for Cake. * XML handling for CakePHP.
* *
* The methods in these classes enable the datasources that use XML to work. * The methods in these classes enable the datasources that use XML to work.
* *

View file

@ -1,6 +1,6 @@
<?php <?php
/** /**
* Basic Cake functionality. * Basic CakePHP functionality.
* *
* Handles loading of core files needed on every request * Handles loading of core files needed on every request
* *