1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 16:42:57 +00:00

Move public members above protected members in rule watch node

This commit is contained in:
Nils Adermann 2012-05-20 15:58:55 +02:00
parent c869566868
commit e817a2e2d7

View file

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