| 1 | <?php |
||
| 21 | final class ChainCollectionDataProvider implements CollectionDataProviderInterface |
||
| 22 | { |
||
| 23 | private $dataProviders; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param CollectionDataProviderInterface[] $dataProviders |
||
| 27 | */ |
||
| 28 | public function __construct(array $dataProviders) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function getCollection(string $resourceClass, string $operationName = null) |
||
| 46 | } |
||
| 47 |