From 68790fcb998e543e4782c623f235a898ce5f628f Mon Sep 17 00:00:00 2001 From: "Paul M. Jones" Date: Tue, 27 Nov 2018 15:52:41 -0600 Subject: [PATCH] rewrite value object --- tests/Domain/Value/Value.php | 60 +++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 18 deletions(-) diff --git a/tests/Domain/Value/Value.php b/tests/Domain/Value/Value.php index 7c7ceb1..bb9a8f6 100644 --- a/tests/Domain/Value/Value.php +++ b/tests/Domain/Value/Value.php @@ -7,49 +7,73 @@ abstract class Value { - protected $__immutable__ = false; + private $__INITIALIZED__ = false; public function __construct() { - if ($this->__immutable__) { - throw new RuntimeException('immutable'); + if ($this->__INITIALIZED__) { + throw $this->immutableException(); } - $this->__immutable__ = true; + $this->__INITIALIZED__ = true; } - public function __get($key) + public function __get(string $key) { - throw new RuntimeException('immutable'); + return $this->$key; } - public function __set($key, $val) + public function __set(string $key, $val) : void { - throw new RuntimeException('immutable'); + throw $this->immutableException(); } - public function __isset($key) + public function __isset(string $key) { return isset($this->$key); } - public function __unset($key) + public function __unset(string $key) : void { - throw new RuntimeException('immutable'); + throw $this->immutableException(); } - protected function with(array $props) + public function __debugInfo() : array { - $clone = clone $this; - foreach ($props as $name => $value) { - $clone->$name = $value; - } - return $clone; + $info = get_object_vars($this); + unset($info['__INITIALIZED__']); + return $info; } public function getArrayCopy() { $copy = get_object_vars($this); - unset($copy['__immutable__']); + unset($copy['__INITIALIZED__']); return $copy; } + + protected function with(array $properties) // : static + { + unset($properties['__INITIALIZED__']); + + if ($this->__INITIALIZED__) { + $object = clone $this; + } else { + $object = $this; + } + + foreach ($properties as $name => $value) { + if (! property_exists($this, $name)) { + throw $this->immutableException(); + } + $object->$name = $value; + } + + return $object; + } + + private function immutableException() : RuntimeException + { + $message = get_class($this) . ' cannot be modified after construction.'; + return new RuntimeException($message); + } }