| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class ThemeHelper |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var BundleSyncHelper |
||
| 25 | */ |
||
| 26 | private $themeSyncHelper; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var EntityManagerInterface |
||
| 30 | */ |
||
| 31 | private $em; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * ThemeHelper constructor. |
||
| 35 | */ |
||
| 36 | public function __construct( |
||
| 37 | BundleSyncHelper $themeSyncHelper, |
||
| 38 | EntityManagerInterface $em |
||
| 39 | ) { |
||
| 40 | $this->themeSyncHelper = $themeSyncHelper; |
||
| 41 | $this->em = $em; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function regenerateThemes(): bool |
||
| 57 | } |
||
| 58 | } |
||
| 59 |