This commit is contained in:
euromark 2013-09-17 14:53:07 +02:00
parent 382f75dbfc
commit 12f2f729c8
8 changed files with 8 additions and 8 deletions

View file

@ -45,7 +45,7 @@
* - `handler` - callback - The callback to handle errors. You can set this to any callable type,
* including anonymous functions.
* Make sure you add App::uses('MyHandler', 'Error'); when using a custom handler class
* - `level` - int - The level of errors you are interested in capturing.
* - `level` - integer - The level of errors you are interested in capturing.
* - `trace` - boolean - Include stack traces for errors in log files.
*
* @see ErrorHandler for more information on error handling and configuration.

View file

@ -39,7 +39,7 @@ class RedisEngine extends CacheEngine {
* - server = string URL or ip to the Redis server host
* - port = integer port number to the Redis server (default: 6379)
* - timeout = float timeout in seconds (default: 0)
* - persistent = bool Connects to the Redis server with a persistent connection (default: true)
* - persistent = boolean Connects to the Redis server with a persistent connection (default: true)
*
* @var array
*/

View file

@ -36,7 +36,7 @@
* - `handler` - callback - The callback to handle errors. You can set this to any callable type,
* including anonymous functions.
* Make sure you add App::uses('MyHandler', 'Error'); when using a custom handler class
* - `level` - int - The level of errors you are interested in capturing.
* - `level` - integer - The level of errors you are interested in capturing.
* - `trace` - boolean - Include stack traces for errors in log files.
*
* @see ErrorHandler for more information on error handling and configuration.

View file

@ -211,7 +211,7 @@ class AuthComponent extends Component {
* Error to display when user attempts to access an object or action to which they do not have
* access.
*
* @var string|bool Error message or boolean false to suppress flash message
* @var string|boolean Error message or boolean false to suppress flash message
* @link http://book.cakephp.org/2.0/en/core-libraries/components/authentication.html#AuthComponent::$authError
*/
public $authError = null;

View file

@ -243,7 +243,7 @@ class Dispatcher implements CakeEventListener {
* Load controller and return controller classname
*
* @param CakeRequest $request
* @return string|bool Name of controller class name
* @return string|boolean Name of controller class name
*/
protected function _loadController($request) {
$pluginName = $pluginPath = $controller = null;

View file

@ -190,7 +190,7 @@ class CakeNumber {
* Formats a number into a currency format.
*
* @param float $value A floating point number
* @param integer $options if int then places, if string then before, if (,.-) then use it
* @param integer $options If integer then places, if string then before, if (,.-) then use it
* or array with places and before keys
* @return string formatted number
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::format

View file

@ -647,7 +647,7 @@ class FormHelper extends AppHelper {
*
* ### Options:
*
* - `escape` bool - Whether or not to html escape the contents of the error.
* - `escape` boolean - Whether or not to html escape the contents of the error.
* - `wrap` mixed - Whether or not the error message should be wrapped in a div. If a
* string, will be used as the HTML tag to use.
* - `class` string - The classname for the error message

View file

@ -113,7 +113,7 @@ class NumberHelper extends AppHelper {
* @see CakeNumber::format()
*
* @param float $number A floating point number
* @param integer $options if int then places, if string then before, if (,.-) then use it
* @param integer $options If integer then places, if string then before, if (,.-) then use it
* or array with places and before keys
* @return string formatted number
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/number.html#NumberHelper::format