1
0
Fork 0

Move public members above protected members in rule watch node

pull/715/head
Nils Adermann 2012-05-20 15:58:55 +02:00
parent c869566868
commit e817a2e2d7
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ namespace Composer\DependencyResolver;
*/ */
class RuleWatchNode class RuleWatchNode
{ {
protected $rule;
public $watch1; public $watch1;
public $watch2; public $watch2;
protected $rule;
public function __construct($rule) public function __construct($rule)
{ {
$this->rule = $rule; $this->rule = $rule;