function UnknownPathExcluder::excludeUnknownPaths

Same name and namespace in other branches
  1. 11.x core/modules/package_manager/src/PathExcluder/UnknownPathExcluder.php \Drupal\package_manager\PathExcluder\UnknownPathExcluder::excludeUnknownPaths()

Excludes unknown paths from stage operations.

Parameters

\Drupal\package_manager\Event\CollectPathsToExcludeEvent $event: The event object.

File

core/modules/package_manager/src/PathExcluder/UnknownPathExcluder.php, line 161

Class

UnknownPathExcluder
Excludes unknown paths from stage operations.

Namespace

Drupal\package_manager\PathExcluder

Code

public function excludeUnknownPaths(CollectPathsToExcludeEvent $event) : void {
  // We can exclude the paths as-is; they are already relative to the project
  // root.
  $event->add(...$this->getExcludedPaths());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.