interface PathComponentInterface in Drupal 7 to 8/9 Module Upgrader 8
Represents a single component of a route path.
Hierarchy
- interface \Drupal\drupalmoduleupgrader\Utility\Path\PathComponentInterface
Expanded class hierarchy of PathComponentInterface
All classes that implement PathComponentInterface
File
- src/
Utility/ Path/ PathComponentInterface.php, line 8
Namespace
Drupal\drupalmoduleupgrader\Utility\PathView source
interface PathComponentInterface {
/**
* Constructs the path component.
*
* @param mixed $value
*/
public function __construct($value);
/**
* @return string
*/
public function __toString();
/**
* Returns if this component is considered a wildcard.
*
* @return bool
*/
public function isWildcard();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PathComponentInterface:: |
public | function | Returns if this component is considered a wildcard. | 2 |
PathComponentInterface:: |
public | function | Constructs the path component. | 1 |
PathComponentInterface:: |
public | function | 1 |