You are here

public function PathComponentBase::__construct in Drupal 7 to 8/9 Module Upgrader 8

Constructs the path component.

Parameters

mixed $value:

Overrides PathComponentInterface::__construct

File

src/Utility/Path/PathComponentBase.php, line 18

Class

PathComponentBase
Represents a single component in a route path.

Namespace

Drupal\drupalmoduleupgrader\Utility\Path

Code

public function __construct($value) {
  $this->value = $value;
}