function BreakpointManager::getDiscovery
Overrides DefaultPluginManager::getDiscovery
File
- 
              core/
modules/ breakpoint/ src/ BreakpointManager.php, line 122  
Class
- BreakpointManager
 - Defines a breakpoint plugin manager to deal with breakpoints.
 
Namespace
Drupal\breakpointCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.