protected BreakpointManager::getDiscovery()
Gets the plugin discovery.
Return value
\Drupal\Component\Plugin\Discovery\DiscoveryInterface
Overrides DefaultPluginManager::getDiscovery
File
- core/modules/breakpoint/src/BreakpointManager.php, line 115
Class
- BreakpointManager
- Defines a breakpoint plugin manager to deal with breakpoints.
Namespace
Drupal\breakpoint
Code
protected function getDiscovery() { if (!isset($this->discovery)) { $this->discovery = new YamlDiscovery('breakpoints', $this->moduleHandler->getModuleDirectories() + $this->themeHandler->getThemeDirectories()); $this->discovery = new ContainerDerivativeDiscoveryDecorator($this->discovery); } return $this->discovery; }
Please login to continue.