mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-06 11:32:40 +00:00
Changed all public 'var' declarations to be 'public $var'
This commit is contained in:
parent
4c93fc9e52
commit
850ca02bb6
306 changed files with 1728 additions and 1728 deletions
|
@ -52,14 +52,14 @@ class TestShell extends Shell {
|
|||
* @var name
|
||||
* @access public
|
||||
*/
|
||||
var $name = 'TestShell';
|
||||
public $name = 'TestShell';
|
||||
/**
|
||||
* stopped property
|
||||
*
|
||||
* @var integer
|
||||
* @access public
|
||||
*/
|
||||
var $stopped;
|
||||
public $stopped;
|
||||
|
||||
/**
|
||||
* stop method
|
||||
|
@ -105,7 +105,7 @@ class ShellTest extends CakeTestCase {
|
|||
* @var array
|
||||
* @access public
|
||||
*/
|
||||
var $fixtures = array(
|
||||
public $fixtures = array(
|
||||
'core.post', 'core.comment', 'core.article', 'core.user',
|
||||
'core.tag', 'core.articles_tag', 'core.attachment'
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue