1 | <?php |
||
23 | final class ItemDataProvider implements ItemDataProviderInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var ItemDataProviderInterface |
||
27 | */ |
||
28 | private $decoratedProvider; |
||
29 | |||
30 | public function __construct(ItemDataProviderInterface $decoratedProvider) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | * |
||
38 | * @throws ResourceClassNotSupportedException |
||
39 | * @throws NotFoundHttpException |
||
40 | * @throws ExceptionInterface |
||
41 | */ |
||
42 | public function getItem(string $resourceClass, $id, string $operationName = null, bool $fetchData = false) |
||
51 | } |
||
52 |