mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
commit
eea56d3f23
48 changed files with 101 additions and 101 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -155,7 +155,7 @@ class IniReader implements ConfigReaderInterface {
|
|||
* @param string $key The identifier to write to. If the key has a . it will be treated
|
||||
* as a plugin prefix.
|
||||
* @param array $data The data to convert to ini file.
|
||||
* @return int Bytes saved.
|
||||
* @return integer Bytes saved.
|
||||
*/
|
||||
public function dump($key, $data) {
|
||||
$result = array();
|
||||
|
|
|
@ -83,7 +83,7 @@ class PhpReader implements ConfigReaderInterface {
|
|||
* @param string $key The identifier to write to. If the key has a . it will be treated
|
||||
* as a plugin prefix.
|
||||
* @param array $data Data to dump.
|
||||
* @return int Bytes saved.
|
||||
* @return integer Bytes saved.
|
||||
*/
|
||||
public function dump($key, $data) {
|
||||
$contents = '<?php' . "\n" . '$config = ' . var_export($data, true) . ';';
|
||||
|
|
|
@ -39,7 +39,7 @@ class ConsoleInput {
|
|||
* 2. Handle we are attached to must be stdin.
|
||||
* Allows rich editing with arrow keys and history when inputting a string.
|
||||
*
|
||||
* @var bool
|
||||
* @var boolean
|
||||
*/
|
||||
protected $_canReadline;
|
||||
|
||||
|
@ -73,7 +73,7 @@ class ConsoleInput {
|
|||
* Checks if data is available on the stream
|
||||
*
|
||||
* @param integer $timeout An optional time to wait for data
|
||||
* @return bool True for data available, false otherwise
|
||||
* @return boolean True for data available, false otherwise
|
||||
*/
|
||||
public function dataAvailable($timeout = 0) {
|
||||
$readFds = array($this->_input);
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
@ -812,7 +812,7 @@ class AuthComponent extends Component {
|
|||
* @return boolean true if the user is logged in, false otherwise
|
||||
*/
|
||||
public function loggedIn() {
|
||||
return (boolean)$this->user();
|
||||
return (bool)$this->user();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -718,7 +718,7 @@ class Controller extends Object implements CakeEventListener {
|
|||
*
|
||||
* @param string $modelClass Name of model class to load
|
||||
* @param integer|string $id Initial ID the instanced model class should have
|
||||
* @return bool True if the model was found
|
||||
* @return boolean True if the model was found
|
||||
* @throws MissingModelException if the model class cannot be found.
|
||||
*/
|
||||
public function loadModel($modelClass = null, $id = null) {
|
||||
|
|
|
@ -32,7 +32,7 @@ class CakeEventManager {
|
|||
/**
|
||||
* The default priority queue value for new, attached listeners
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public static $defaultPriority = 10;
|
||||
|
||||
|
|
|
@ -146,7 +146,7 @@ class SyslogLog extends BaseLog {
|
|||
*
|
||||
* @param integer $priority
|
||||
* @param string $message
|
||||
* @return bool
|
||||
* @return boolean
|
||||
*/
|
||||
protected function _write($priority, $message) {
|
||||
return syslog($priority, $message);
|
||||
|
|
|
@ -38,7 +38,7 @@ class DatabaseSession implements CakeSessionHandlerInterface {
|
|||
/**
|
||||
* Number of seconds to mark the session as expired
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
protected $_timeout;
|
||||
|
||||
|
|
|
@ -526,7 +526,7 @@ class ModelValidator implements ArrayAccess, IteratorAggregate, Countable {
|
|||
/**
|
||||
* Returns the number of fields having validation rules
|
||||
*
|
||||
* @return int
|
||||
* @return integer
|
||||
*/
|
||||
public function count() {
|
||||
$this->_parseRules();
|
||||
|
|
|
@ -359,7 +359,7 @@ class CakeValidationSet implements ArrayAccess, IteratorAggregate, Countable {
|
|||
/**
|
||||
* Returns the number of rules in this set
|
||||
*
|
||||
* @return int
|
||||
* @return integer
|
||||
*/
|
||||
public function count() {
|
||||
return count($this->_rules);
|
||||
|
|
|
@ -848,7 +848,7 @@ class CakeResponse {
|
|||
* If called with no parameters, this function will return the current max-age value if any
|
||||
*
|
||||
* @param integer $seconds if null, the method will return the current s-maxage value
|
||||
* @return int
|
||||
* @return integer
|
||||
*/
|
||||
public function sharedMaxAge($seconds = null) {
|
||||
if ($seconds !== null) {
|
||||
|
@ -868,7 +868,7 @@ class CakeResponse {
|
|||
* If called with no parameters, this function will return the current max-age value if any
|
||||
*
|
||||
* @param integer $seconds if null, the method will return the current max-age value
|
||||
* @return int
|
||||
* @return integer
|
||||
*/
|
||||
public function maxAge($seconds = null) {
|
||||
if ($seconds !== null) {
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -31,7 +31,7 @@ abstract class DispatcherFilter implements CakeEventListener {
|
|||
/**
|
||||
* Default priority for all methods in this filter
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 10;
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ class AssetDispatcher extends DispatcherFilter {
|
|||
* Default priority for all methods in this filter
|
||||
* This filter should run before the request gets parsed by router
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 9;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ class CacheDispatcher extends DispatcherFilter {
|
|||
* Default priority for all methods in this filter
|
||||
* This filter should run before the request gets parsed by router
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $priority = 9;
|
||||
|
||||
|
|
|
@ -778,7 +778,7 @@ class Router {
|
|||
* or an array specifying any of the following: 'controller', 'action',
|
||||
* and/or 'plugin', in addition to named arguments (keyed array elements),
|
||||
* and standard URL arguments (indexed array elements)
|
||||
* @param bool|array $full If (bool) true, the full base URL will be prepended to the result.
|
||||
* @param boolean|array $full If (bool) true, the full base URL will be prepended to the result.
|
||||
* If an array accepts the following keys
|
||||
* - escape - used when making URLs embedded in html escapes query string '&'
|
||||
* - full - if true the full base URL will be prepended.
|
||||
|
|
|
@ -278,7 +278,7 @@ class BasicsTest extends CakeTestCase {
|
|||
|
||||
Configure::write('Cache.disable', false);
|
||||
$result = cache('basics_test', 'simple cache write');
|
||||
$this->assertTrue((boolean)$result);
|
||||
$this->assertTrue((bool)$result);
|
||||
$this->assertTrue(file_exists(CACHE . 'basics_test'));
|
||||
|
||||
$result = cache('basics_test');
|
||||
|
|
|
@ -44,7 +44,7 @@ class FixtureTaskTest extends CakeTestCase {
|
|||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ class AclNodeTwoTestBase extends AclNode {
|
|||
/**
|
||||
* cacheSources property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheSources = false;
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ class PermissionTwoTest extends Permission {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ class TestAuthComponent extends AuthComponent {
|
|||
/**
|
||||
* testStop property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $testStop = false;
|
||||
|
||||
|
@ -271,7 +271,7 @@ class AuthComponentTest extends CakeTestCase {
|
|||
/**
|
||||
* initialized property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $initialized = false;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ class DbAclNodeTestBase extends AclNode {
|
|||
/**
|
||||
* cacheSources property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheSources = false;
|
||||
}
|
||||
|
@ -104,7 +104,7 @@ class DbPermissionTest extends CakeTestModel {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ class TranslateBehaviorTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ class TreeBehaviorAfterTest extends CakeTestCase {
|
|||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ class TreeBehaviorNumberTest extends CakeTestCase {
|
|||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ class TreeBehaviorScopedTest extends CakeTestCase {
|
|||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ class TreeBehaviorUuidTest extends CakeTestCase {
|
|||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ class MysqlTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ class PostgresTestModel extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -150,7 +150,7 @@ class PostgresClientTestModel extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ class SqlserverTestModel extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -184,7 +184,7 @@ class SqlserverClientTestModel extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -250,7 +250,7 @@ class SqlserverTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ class DboSourceTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -32,14 +32,14 @@ abstract class BaseModelTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
/**
|
||||
* Whether backup global state for each test method or not
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $backupGlobals = false;
|
||||
|
||||
|
|
|
@ -7144,7 +7144,7 @@ class ModelWriteTest extends BaseModelTest {
|
|||
$TestModel = new Item();
|
||||
|
||||
$result = $TestModel->save(array('published' => true, 'id' => 1));
|
||||
$this->assertTrue((boolean)$result);
|
||||
$this->assertTrue((bool)$result);
|
||||
$result = $TestModel->find('first', array(
|
||||
'fields' => array('id', 'published'),
|
||||
'conditions' => array('Item.id' => 1)));
|
||||
|
|
|
@ -68,7 +68,7 @@ class Test extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -105,7 +105,7 @@ class TestAlias extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -141,7 +141,7 @@ class TestValidate extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -215,7 +215,7 @@ class User extends CakeTestModel {
|
|||
/**
|
||||
* beforeFind() callback used to run ContainableBehaviorTest::testLazyLoad()
|
||||
*
|
||||
* @return bool
|
||||
* @return boolean
|
||||
* @throws Exception
|
||||
*/
|
||||
public function beforeFind($queryData) {
|
||||
|
@ -278,7 +278,7 @@ class Article extends CakeTestModel {
|
|||
/**
|
||||
* beforeSaveReturn property
|
||||
*
|
||||
* @var bool true
|
||||
* @var boolean
|
||||
*/
|
||||
public $beforeSaveReturn = true;
|
||||
|
||||
|
@ -2105,7 +2105,7 @@ class TheVoid extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
}
|
||||
|
@ -2127,7 +2127,7 @@ class ValidationTest1 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -2213,7 +2213,7 @@ class ValidationTest2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3079,7 +3079,7 @@ class TranslatedItem extends CakeTestModel {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
@ -3116,7 +3116,7 @@ class TranslatedItem2 extends CakeTestModel {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
@ -3160,7 +3160,7 @@ class TranslatedItemWithTable extends CakeTestModel {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
@ -3234,7 +3234,7 @@ class TranslatedArticle extends CakeTestModel {
|
|||
/**
|
||||
* cacheQueries property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $cacheQueries = false;
|
||||
|
||||
|
@ -3536,7 +3536,7 @@ class TestModel extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3611,7 +3611,7 @@ class TestModel2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
}
|
||||
|
@ -3633,7 +3633,7 @@ class TestModel3 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
}
|
||||
|
@ -3662,7 +3662,7 @@ class TestModel4 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3746,7 +3746,7 @@ class TestModel4TestModel7 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3791,7 +3791,7 @@ class TestModel5 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3859,7 +3859,7 @@ class TestModel6 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3919,7 +3919,7 @@ class TestModel7 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -3966,7 +3966,7 @@ class TestModel8 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4027,7 +4027,7 @@ class TestModel9 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4088,7 +4088,7 @@ class Level extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4147,7 +4147,7 @@ class Group extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4207,7 +4207,7 @@ class User2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4279,7 +4279,7 @@ class Category2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4362,7 +4362,7 @@ class Article2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4434,7 +4434,7 @@ class CategoryFeatured2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4482,7 +4482,7 @@ class Featured2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4547,7 +4547,7 @@ class Comment2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4594,7 +4594,7 @@ class ArticleFeatured2 extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -4667,7 +4667,7 @@ class MysqlTestModel extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
|
|
@ -1052,7 +1052,7 @@ class CakeRequestTest extends CakeTestCase {
|
|||
* Helper function for testing callbacks.
|
||||
*
|
||||
* @param $request
|
||||
* @return bool
|
||||
* @return boolean
|
||||
*/
|
||||
public function detectCallback($request) {
|
||||
return (bool)$request->return;
|
||||
|
|
|
@ -341,7 +341,7 @@ class SomePostsController extends AppController {
|
|||
/**
|
||||
* autoRender property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoRender = false;
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ class ClassRegisterModel extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@ class SanitizeTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ class XmlTest extends CakeTestCase {
|
|||
/**
|
||||
* autoFixtures property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $autoFixtures = false;
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ class Contact extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -144,7 +144,7 @@ class ContactTagsContact extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -209,7 +209,7 @@ class ContactTag extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -236,7 +236,7 @@ class UserForm extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -276,7 +276,7 @@ class OpenidUrl extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -331,7 +331,7 @@ class ValidateUser extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -380,7 +380,7 @@ class ValidateProfile extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -439,7 +439,7 @@ class ValidateItem extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -488,7 +488,7 @@ class TestMail extends CakeTestModel {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@ class HelperTestPost extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -73,7 +73,7 @@ class HelperTestComment extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -107,7 +107,7 @@ class HelperTestTag extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
@ -138,7 +138,7 @@ class HelperTestPostsTag extends Model {
|
|||
/**
|
||||
* useTable property
|
||||
*
|
||||
* @var bool false
|
||||
* @var boolean
|
||||
*/
|
||||
public $useTable = false;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -44,7 +44,7 @@ abstract class ObjectCollection {
|
|||
/**
|
||||
* Default object priority. A non zero integer.
|
||||
*
|
||||
* @var int
|
||||
* @var integer
|
||||
*/
|
||||
public $defaultPriority = 10;
|
||||
|
||||
|
|
|
@ -497,7 +497,7 @@ class Validation {
|
|||
if ($type === 'ipv6') {
|
||||
$flags = FILTER_FLAG_IPV6;
|
||||
}
|
||||
return (boolean)filter_var($check, FILTER_VALIDATE_IP, array('flags' => $flags));
|
||||
return (bool)filter_var($check, FILTER_VALIDATE_IP, array('flags' => $flags));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
|
@ -1739,7 +1739,7 @@ class FormHelper extends AppHelper {
|
|||
* @param string $title The content to be wrapped by <a> tags.
|
||||
* @param string|array $url Cake-relative URL or array of URL parameters, or external URL (starts with http://)
|
||||
* @param array $options Array of HTML attributes.
|
||||
* @param bool|string $confirmMessage JavaScript confirmation message.
|
||||
* @param boolean|string $confirmMessage JavaScript confirmation message.
|
||||
* @return string An `<a />` element.
|
||||
* @link http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue