| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | abstract class AbstractInteractor implements InteractorInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $elements; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * AbstractInteractor constructor. |
||
| 16 | * |
||
| 17 | * @param array $elements |
||
| 18 | */ |
||
| 19 | 29 | public function __construct(array $elements) |
|
| 22 | 29 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 9 | public function all(): array |
|
| 32 |