mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
spelling corrections
This commit is contained in:
parent
faa6292f15
commit
fab5a6f4d9
5 changed files with 6 additions and 6 deletions
|
@ -632,8 +632,8 @@ class UpgradeShell extends AppShell {
|
||||||
/**
|
/**
|
||||||
* Move application php files to where they now should be
|
* Move application php files to where they now should be
|
||||||
*
|
*
|
||||||
* Find all php files in the folder (honoring recursive) and determine where cake expects the file to be
|
* Find all php files in the folder (honoring recursive) and determine where CakePHP expects the file to be
|
||||||
* If the file is not exactly where cake expects it - move it.
|
* If the file is not exactly where CakePHP expects it - move it.
|
||||||
*
|
*
|
||||||
* @param string $path
|
* @param string $path
|
||||||
* @param array $options array(recursive, checkFolder)
|
* @param array $options array(recursive, checkFolder)
|
||||||
|
|
|
@ -27,7 +27,7 @@ if (!defined('DS')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* These defines should only be edited if you have cake installed in
|
* These defines should only be edited if you have CakePHP installed in
|
||||||
* a directory layout other than the way it is distributed.
|
* a directory layout other than the way it is distributed.
|
||||||
* When using custom settings be sure to use the DS and do not add a trailing DS.
|
* When using custom settings be sure to use the DS and do not add a trailing DS.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -34,7 +34,7 @@ class RedirectRoute extends CakeRoute {
|
||||||
public $response = null;
|
public $response = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The location to redirect to. Either a string or a cake array URL.
|
* The location to redirect to. Either a string or a CakePHP array URL.
|
||||||
*
|
*
|
||||||
* @var mixed
|
* @var mixed
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -97,7 +97,7 @@ class AppTest extends CakeTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tests that it is possible to set up paths using the cake 1.3 notation for them (models, behaviors, controllers...)
|
* tests that it is possible to set up paths using the CakePHP 1.3 notation for them (models, behaviors, controllers...)
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -285,7 +285,7 @@ class JsHelper extends AppHelper {
|
||||||
* - `buffer` - Disable the buffering and return a script tag in addition to the link.
|
* - `buffer` - Disable the buffering and return a script tag in addition to the link.
|
||||||
*
|
*
|
||||||
* @param string $title Title for the link.
|
* @param string $title Title for the link.
|
||||||
* @param string|array $url Mixed either a string URL or an cake URL array.
|
* @param string|array $url Mixed either a string URL or a CakePHP URL array.
|
||||||
* @param array $options Options for both the HTML element and Js::request()
|
* @param array $options Options for both the HTML element and Js::request()
|
||||||
* @return string Completed link. If buffering is disabled a script tag will be returned as well.
|
* @return string Completed link. If buffering is disabled a script tag will be returned as well.
|
||||||
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/js.html#JsHelper::link
|
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/js.html#JsHelper::link
|
||||||
|
|
Loading…
Add table
Reference in a new issue