Skip to content
Snippets Groups Projects
Commit f01eb1bc authored by catch's avatar catch
Browse files

Revert "Issue #3471741 by mstrelan, bbrala, kristiaanvandeneynde: Fix null...

Revert "Issue #3471741 by mstrelan, bbrala, kristiaanvandeneynde: Fix null $cid in CacheCollector classes"

This reverts commit 39041950.
parent 3eee8f1d
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ class LibraryDiscoveryCollector extends CacheCollector { ...@@ -43,7 +43,7 @@ class LibraryDiscoveryCollector extends CacheCollector {
*/ */
public function __construct(CacheBackendInterface $cache, LockBackendInterface $lock, LibraryDiscoveryParser $discovery_parser, ThemeManagerInterface $theme_manager) { public function __construct(CacheBackendInterface $cache, LockBackendInterface $lock, LibraryDiscoveryParser $discovery_parser, ThemeManagerInterface $theme_manager) {
$this->themeManager = $theme_manager; $this->themeManager = $theme_manager;
parent::__construct('', $cache, $lock, ['library_info']); parent::__construct(NULL, $cache, $lock, ['library_info']);
$this->discoveryParser = $discovery_parser; $this->discoveryParser = $discovery_parser;
} }
...@@ -52,7 +52,7 @@ public function __construct(CacheBackendInterface $cache, LockBackendInterface $ ...@@ -52,7 +52,7 @@ public function __construct(CacheBackendInterface $cache, LockBackendInterface $
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function getCid() { protected function getCid() {
if ($this->cid === '') { if (!isset($this->cid)) {
$this->cid = 'library_info:' . $this->themeManager->getActiveTheme()->getName(); $this->cid = 'library_info:' . $this->themeManager->getActiveTheme()->getName();
} }
...@@ -164,7 +164,7 @@ protected function applyLibrariesExtend($extension, $library_name, $library_defi ...@@ -164,7 +164,7 @@ protected function applyLibrariesExtend($extension, $library_name, $library_defi
*/ */
public function reset() { public function reset() {
parent::reset(); parent::reset();
$this->cid = ''; $this->cid = NULL;
} }
} }
...@@ -42,7 +42,7 @@ class MenuActiveTrail extends CacheCollector implements MenuActiveTrailInterface ...@@ -42,7 +42,7 @@ class MenuActiveTrail extends CacheCollector implements MenuActiveTrailInterface
* The lock backend. * The lock backend.
*/ */
public function __construct(MenuLinkManagerInterface $menu_link_manager, RouteMatchInterface $route_match, CacheBackendInterface $cache, LockBackendInterface $lock) { public function __construct(MenuLinkManagerInterface $menu_link_manager, RouteMatchInterface $route_match, CacheBackendInterface $cache, LockBackendInterface $lock) {
parent::__construct('', $cache, $lock); parent::__construct(NULL, $cache, $lock);
$this->menuLinkManager = $menu_link_manager; $this->menuLinkManager = $menu_link_manager;
$this->routeMatch = $route_match; $this->routeMatch = $route_match;
} }
...@@ -53,7 +53,7 @@ public function __construct(MenuLinkManagerInterface $menu_link_manager, RouteMa ...@@ -53,7 +53,7 @@ public function __construct(MenuLinkManagerInterface $menu_link_manager, RouteMa
* @see ::getActiveTrailIds() * @see ::getActiveTrailIds()
*/ */
protected function getCid() { protected function getCid() {
if ($this->cid === '') { if (!isset($this->cid)) {
$route_parameters = $this->routeMatch->getRawParameters()->all(); $route_parameters = $this->routeMatch->getRawParameters()->all();
ksort($route_parameters); ksort($route_parameters);
$this->cid = 'active-trail:route:' . $this->routeMatch->getRouteName() . ':route_parameters:' . serialize($route_parameters); $this->cid = 'active-trail:route:' . $this->routeMatch->getRouteName() . ':route_parameters:' . serialize($route_parameters);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment