From 98af9ccf5951b920b3fa66287bdec82ee65934a2 Mon Sep 17 00:00:00 2001 From: Rik Bruil Date: Sun, 8 Mar 2015 17:38:08 +0100 Subject: [PATCH] Changed visibility of some properties --- src/AndX.php | 4 ++-- src/Not.php | 2 +- src/OrX.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/AndX.php b/src/AndX.php index 526b300..04330dc 100644 --- a/src/AndX.php +++ b/src/AndX.php @@ -10,12 +10,12 @@ class AndX extends CompositeSpecification /** * @var SpecificationInterface */ - private $x; + protected $x; /** * @var SpecificationInterface */ - private $y; + protected $y; /** * @param SpecificationInterface $x diff --git a/src/Not.php b/src/Not.php index e51f949..d7f79be 100644 --- a/src/Not.php +++ b/src/Not.php @@ -10,7 +10,7 @@ class Not extends CompositeSpecification /** * @var SpecificationInterface */ - private $wrapped; + protected $wrapped; /** * @param SpecificationInterface $x diff --git a/src/OrX.php b/src/OrX.php index b592122..2e4e460 100644 --- a/src/OrX.php +++ b/src/OrX.php @@ -10,12 +10,12 @@ class OrX extends CompositeSpecification /** * @var SpecificationInterface */ - private $x; + protected $x; /** * @var SpecificationInterface */ - private $y; + protected $y; /** * @param SpecificationInterface $x