Changed all public 'var' declarations to be 'public $var'

This commit is contained in:
predominant 2010-04-04 17:14:00 +10:00
parent 4c93fc9e52
commit 850ca02bb6
306 changed files with 1728 additions and 1728 deletions

View file

@ -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'
);