Conditions | 4 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 20 |
Changes | 0 |
1 | <?php |
||
50 | protected function load($field) |
||
51 | { |
||
52 | if (!is_null($this->$field) |
||
53 | || !$this->delegatesCollection |
||
54 | || !$this->delegatesCollection->containsKey($key = strtolower($field)) |
||
55 | ) { |
||
56 | return $this->$field; |
||
57 | } |
||
58 | |||
59 | $loader = $this->delegatesCollection->get($key); |
||
60 | $this->delegatesCollection->remove($key); |
||
61 | |||
62 | return $this->$field = $loader($this); |
||
63 | } |
||
64 | } |
||
65 |