You are here

public function ExcludedPathsTrait::getExcludedPaths in Automatic Updates 8.2

Returns the paths to exclude from the update operation.

Return value

string[] The paths to exclude.

File

src/Event/ExcludedPathsTrait.php, line 35

Class

ExcludedPathsTrait
Common functionality for events which can collect excluded paths.

Namespace

Drupal\automatic_updates\Event

Code

public function getExcludedPaths() : array {
  return array_unique($this->excludedPaths);
}