Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Alistaircol\Hta\Domain\Basket\DataTransferObjects; |
| 6 | |
| 7 | use Alistaircol\Hta\Domain\Basket\Concerns\ProductInterface; |
| 8 | |
| 9 | interface ProductInterfaceArrayAccessInterface |
| 10 | { |
| 11 | public function offsetExists(string $offset): bool; |
| 12 | public function offsetGet(string $offset): ?ProductInterface; |
| 13 | public function offsetSet(string $offset, ProductInterface $value): void; |
| 14 | public function offsetUnset(string $offset): void; |
| 15 | } |