| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class DynamicEntityDependencyProvider extends SprykerDynamicEntityDependencyProvider |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @return array<\Spryker\Zed\DynamicEntityExtension\Dependency\Plugin\DynamicEntityPostUpdatePluginInterface> |
||
| 18 | */ |
||
| 19 | protected function getDynamicEntityPostUpdatePlugins(): array |
||
| 20 | { |
||
| 21 | return [ |
||
| 22 | new AvailabilityDynamicEntityPostUpdatePlugin(), |
||
| 23 | ]; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array<\Spryker\Zed\DynamicEntityExtension\Dependency\Plugin\DynamicEntityPostCreatePluginInterface> |
||
| 28 | */ |
||
| 29 | protected function getDynamicEntityPostCreatePlugins(): array |
||
| 33 | ]; |
||
| 34 | } |
||
| 36 |