protected function PermissionHandler::getYamlDiscovery in Drupal 8
Same name and namespace in other branches
- 9 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::getYamlDiscovery()
 - 10 core/modules/user/src/PermissionHandler.php \Drupal\user\PermissionHandler::getYamlDiscovery()
 
Gets the YAML discovery.
Return value
\Drupal\Core\Discovery\YamlDiscovery The YAML discovery.
File
- core/
modules/ user/ src/ PermissionHandler.php, line 97  
Class
- PermissionHandler
 - Provides the available permissions based on yml files.
 
Namespace
Drupal\userCode
protected function getYamlDiscovery() {
  if (!isset($this->yamlDiscovery)) {
    $this->yamlDiscovery = new YamlDiscovery('permissions', $this->moduleHandler
      ->getModuleDirectories());
  }
  return $this->yamlDiscovery;
}