| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 15 |
| Ratio | 100 % |
| Tests | 9 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace BuildR\Collection\Collection; |
||
| 49 | 14 | public function size() { |
|
| 50 | 14 | return (is_array($this->data)) ? count($this->data) : 0; |
|
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | * |
||
| 56 | * @codeCoverageIgnore |
||
| 57 | */ |
||
| 58 | public function current() { |
||
| 59 | return current($this->data); |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * {@inheritdoc} |
||
| 64 | * |
||
| 119 |