Browse Source

Updated additional references of Cake to CakePHP

Bryan Crowe 12 years ago
parent
commit
bb65765d70

+ 1 - 1
app/Config/database.php.default

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

+ 1 - 1
app/Config/email.php.default

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

+ 1 - 1
app/Model/AppModel.php

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

+ 1 - 1
lib/Cake/Console/ShellDispatcher.php

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

+ 5 - 5
lib/Cake/Model/Datasource/CakeSession.php

@@ -1,8 +1,8 @@
 <?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.
  * This class is the implementation of those methods.
  * They are mostly used by the Session Component.
@@ -27,9 +27,9 @@ App::uses('Hash', '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.
  *
  * @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.
  *

+ 1 - 1
lib/Cake/Utility/Xml.php

@@ -23,7 +23,7 @@
 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.
  *

+ 1 - 1
lib/Cake/bootstrap.php

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