Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public function value(array $data, $owner = null) |
||
45 | { |
||
46 | if (!isset($this->sourceHydrator)) { |
||
47 | throw NoSourceHydrator::tryingToHydrateBackReferenceIn($this->name); |
||
48 | } |
||
49 | $instance = $this->sourceHydrator->currentInstance(); |
||
50 | if (!isset($instance)) { |
||
51 | throw NoReferrerFound::tryingToHydrateBackReferenceIn($this->name); |
||
52 | } |
||
53 | return $instance; |
||
54 | } |
||
56 |