mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #1689 from dereuromark/master-cakephp-name
Cake to CakePHP name
This commit is contained in:
commit
3e8af8b180
10 changed files with 12 additions and 12 deletions
|
@ -17,7 +17,7 @@ Some Handy Links
|
|||
|
||||
[The Bakery](http://bakery.cakephp.org) - Tips, tutorials and articles
|
||||
|
||||
[API](http://api.cakephp.org) - A reference to Cake's classes
|
||||
[API](http://api.cakephp.org) - A reference to CakePHP's classes
|
||||
|
||||
[CakePHP TV](http://tv.cakephp.org) - Screen casts from events and video tutorials
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* Get Cake's root directory
|
||||
* Get CakePHP's root directory
|
||||
*/
|
||||
define('APP_DIR', 'app');
|
||||
define('DS', DIRECTORY_SEPARATOR);
|
||||
|
|
|
@ -207,7 +207,7 @@ class Controller extends Object implements CakeEventListener {
|
|||
public $View;
|
||||
|
||||
/**
|
||||
* File extension for view templates. Defaults to Cake's conventional ".ctp".
|
||||
* File extension for view templates. Defaults to CakePHP's conventional ".ctp".
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Dispatcher takes the URL information, parses it for parameters and
|
||||
* tells the involved controllers what to do.
|
||||
*
|
||||
* This is the heart of Cake's operation.
|
||||
* This is the heart of CakePHP's operation.
|
||||
*
|
||||
* PHP 5
|
||||
*
|
||||
|
|
|
@ -3477,7 +3477,7 @@ class ContainableBehaviorTest extends CakeTestCase {
|
|||
'joinTable' => 'articles_tags',
|
||||
'foreignKey' => 'article_id',
|
||||
'associationForeignKey' => 'tag_id',
|
||||
// LENGHT function mysql-only, using LIKE does almost the same
|
||||
// LENGTH function mysql-only, using LIKE does almost the same
|
||||
'conditions' => "ShortTag.tag LIKE '???'"
|
||||
)
|
||||
)
|
||||
|
|
|
@ -42,7 +42,7 @@ class CakeTestLoader extends PHPUnit_Runner_StandardTestSuiteLoader {
|
|||
}
|
||||
|
||||
/**
|
||||
* Convert path fragments used by Cake's test runner to absolute paths that can be fed to PHPUnit.
|
||||
* Convert path fragments used by CakePHP's test runner to absolute paths that can be fed to PHPUnit.
|
||||
*
|
||||
* @param string $filePath
|
||||
* @param string $params
|
||||
|
|
|
@ -22,14 +22,14 @@ require_once 'PHPUnit/TextUI/TestRunner.php';
|
|||
App::uses('CakeFixtureManager', 'TestSuite/Fixture');
|
||||
|
||||
/**
|
||||
* A custom test runner for Cake's use of PHPUnit.
|
||||
* A custom test runner for CakePHP's use of PHPUnit.
|
||||
*
|
||||
* @package Cake.TestSuite
|
||||
*/
|
||||
class CakeTestRunner extends PHPUnit_TextUI_TestRunner {
|
||||
|
||||
/**
|
||||
* Lets us pass in some options needed for cake's webrunner.
|
||||
* Lets us pass in some options needed for CakePHP's webrunner.
|
||||
*
|
||||
* @param mixed $loader
|
||||
* @param array $params list of options to be used for this run
|
||||
|
|
|
@ -32,7 +32,7 @@ class CakeTestFixture {
|
|||
public $name = null;
|
||||
|
||||
/**
|
||||
* Cake's DBO driver (e.g: DboMysql).
|
||||
* CakePHP's DBO driver (e.g: DboMysql).
|
||||
*
|
||||
* @var object
|
||||
*/
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
* Pluralize and singularize English words.
|
||||
*
|
||||
* Inflector pluralizes and singularizes English nouns.
|
||||
* Used by Cake's naming conventions throughout the framework.
|
||||
* Used by CakePHP's naming conventions throughout the framework.
|
||||
*
|
||||
* @package Cake.Utility
|
||||
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/inflector.html
|
||||
|
|
|
@ -136,7 +136,7 @@ class View extends Object {
|
|||
public $layoutPath = null;
|
||||
|
||||
/**
|
||||
* Turns on or off Cake's conventional mode of applying layout files. On by default.
|
||||
* Turns on or off CakePHP's conventional mode of applying layout files. On by default.
|
||||
* Setting to off means that layouts will not be automatically applied to rendered views.
|
||||
*
|
||||
* @var boolean
|
||||
|
@ -144,7 +144,7 @@ class View extends Object {
|
|||
public $autoLayout = true;
|
||||
|
||||
/**
|
||||
* File extension. Defaults to Cake's template ".ctp".
|
||||
* File extension. Defaults to CakePHP's template ".ctp".
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue