| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 13 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | View Code Duplication | public function unRegisterBlock($identifier) |
|
| 44 | { |
||
| 45 | $this->rewind(); |
||
| 46 | while ($this->valid()) { |
||
| 47 | if ($identifier === $this->getInfo()) { |
||
| 48 | $object = $this->current(); |
||
| 49 | $this->rewind(); |
||
| 50 | return $object->unRegisterBlock(); |
||
| 51 | } |
||
| 52 | $this->next(); |
||
| 53 | } |
||
| 54 | return false; |
||
| 55 | } |
||
| 56 | |||
| 75 |