| 1 | <?php | ||
| 10 | class ThemeController extends Base | ||
| 11 | { | ||
| 12 | /** | ||
| 13 | * @var null|ThemeContainerInterface | ||
| 14 | */ | ||
| 15 | protected $themeContainer = null; | ||
| 16 | |||
| 17 | /** | ||
| 18 |      * {@inheritdoc} | ||
| 19 | * @param null|ThemeContainerInterface $themeContainer | ||
| 20 | */ | ||
| 21 | public function __construct(ActiveTheme $activeTheme, array $themes, array $cookieOptions, ThemeContainerInterface $themeContainer = null) | ||
| 26 | |||
| 27 | /** | ||
| 28 |      * {@inheritdoc} | ||
| 29 | */ | ||
| 30 | public function switchAction(Request $request) | ||
| 38 | } | ||
| 39 |