| Total Complexity | 5 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class StockMovementProvider implements StockMovementProviderInterface |
||
| 14 | { |
||
| 15 | /** @var FilterInterface[] */ |
||
| 16 | protected $filters = []; |
||
| 17 | |||
| 18 | /** @var EntityRepository */ |
||
| 19 | private $repository; |
||
| 20 | |||
| 21 | public function __construct(EntityRepository $repository) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function addFilter(FilterInterface $filter): void |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getStockMovements(): Generator |
||
| 53 |