| 1 | <?php |
||
| 20 | abstract class Repository implements RepositoryInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var \ReflectionClass |
||
| 24 | */ |
||
| 25 | protected $entityReflectionClass; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $entityName |
||
| 29 | */ |
||
| 30 | public function __construct($entityName) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param mixed $item |
||
| 44 | * |
||
| 45 | * @throws \InvalidArgumentException |
||
| 46 | */ |
||
| 47 | protected function checkType($item) |
||
| 57 | } |
||
| 58 |