Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | final class BlindObserver implements ObservesHydration |
||
14 | { |
||
15 | /** |
||
16 | * Creates a new blind observer. |
||
17 | * |
||
18 | * @return self |
||
19 | */ |
||
20 | public static function add() : self |
||
21 | { |
||
22 | return new self; |
||
23 | } |
||
24 | |||
25 | /** @inheritdoc */ |
||
26 | public function hydrating($theInstance) : void |
||
28 | // No operation. |
||
29 | } |
||
31 |