diff options
Diffstat (limited to 'ext/spl/tests/observer_005.phpt')
-rw-r--r-- | ext/spl/tests/observer_005.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/observer_005.phpt b/ext/spl/tests/observer_005.phpt index 883602f51d..fe490525b8 100644 --- a/ext/spl/tests/observer_005.phpt +++ b/ext/spl/tests/observer_005.phpt @@ -9,7 +9,7 @@ class TestClass public $pub = 25; protected $pro = 26; private $pri = 27; - + public function __construct($pub = 42, $pro = 43, $pri = 44) { $this->pub = $pub; @@ -28,7 +28,7 @@ class MyStorage extends SplObjectStorage public $pub = 25; protected $pro = 26; private $pri = 27; - + public function __construct($pub = 52, $pro = 53, $pri = 54) { $this->pub = $pub; |