| 1 | <?php | ||
| 11 | class EventDispatchingGridMetadataFactory implements GridMetadataFactoryInterface | ||
| 12 | { | ||
| 13 | /** | ||
| 14 | * @var GridMetadataFactoryInterface | ||
| 15 | */ | ||
| 16 | private $innerFactory; | ||
| 17 | |||
| 18 | /** | ||
| 19 | * @var EventDispatcherInterface | ||
| 20 | */ | ||
| 21 | private $eventDispatcher; | ||
| 22 | |||
| 23 | public function __construct( | ||
| 30 | |||
| 31 | public function getGridMetadata(string $classFqn, string $variant): GridMetadata | ||
| 39 | } | ||
| 40 |