You are here

public function AlterExcludedPathsEvent::addExcludedPath in Stage File Proxy 8

Adds an excluded path to the excluded paths array.

Parameters

string $excluded_path: The excluded path string to add.

File

src/EventDispatcher/AlterExcludedPathsEvent.php, line 57

Class

AlterExcludedPathsEvent
Class AlterExcludedPathsEvent.

Namespace

Drupal\stage_file_proxy\EventDispatcher

Code

public function addExcludedPath($excluded_path) {
  $this->excludedPaths[] = $excluded_path;
}