Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
| TranslatedImages | |
100.00% |
2 / 2 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
| current | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| get | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Cosray\Value; |
| 6 | |
| 7 | class TranslatedImages extends Images |
| 8 | { |
| 9 | public function current(): TranslatedImage |
| 10 | { |
| 11 | return $this->get($this->pointer); |
| 12 | } |
| 13 | |
| 14 | public function get(int $index): TranslatedImage |
| 15 | { |
| 16 | return new TranslatedImage($this->owner, $this->field, $this->context, $index); |
| 17 | } |
| 18 | } |