| 1 | <?php |
| 2 | |
| 3 | class Update { |
| 4 | private $value; |
| 5 | private $diff; |
| 6 | |
| 7 | public function __construct($value, $diff) { |
| 8 | $this->value = $value; |
| 9 | $this->diff = $diff; |
| 10 | } |
| 11 | |
| 12 | public function getValue() { |
| 13 | return $this->value; |
| 14 | } |
| 15 | |
| 16 | public function getDiff() { |
| 17 | return $this->diff; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | class State { |
| 22 | private $state; |
nothing calls this directly
no outgoing calls
no test coverage detected