Skip to content

Commit

Permalink
Changed visibility of some properties
Browse files Browse the repository at this point in the history
  • Loading branch information
rikbruil committed Mar 8, 2015
1 parent a1b0a64 commit 98af9cc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/AndX.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class AndX extends CompositeSpecification
/**
* @var SpecificationInterface
*/
private $x;
protected $x;

/**
* @var SpecificationInterface
*/
private $y;
protected $y;

/**
* @param SpecificationInterface $x
Expand Down
2 changes: 1 addition & 1 deletion src/Not.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Not extends CompositeSpecification
/**
* @var SpecificationInterface
*/
private $wrapped;
protected $wrapped;

/**
* @param SpecificationInterface $x
Expand Down
4 changes: 2 additions & 2 deletions src/OrX.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class OrX extends CompositeSpecification
/**
* @var SpecificationInterface
*/
private $x;
protected $x;

/**
* @var SpecificationInterface
*/
private $y;
protected $y;

/**
* @param SpecificationInterface $x
Expand Down

0 comments on commit 98af9cc

Please sign in to comment.