PathComponent.php in Drupal 7 to 8/9 Module Upgrader 8
Same filename in this branch
File
src/Utility/Path/Drupal8/PathComponent.phpView source
<?php
namespace Drupal\drupalmoduleupgrader\Utility\Path\Drupal8;
use Drupal\drupalmoduleupgrader\Utility\Path\PathComponentBase;
/**
* Represents a single component in a Drupal 8 route path.
*/
class PathComponent extends PathComponentBase {
/**
* {@inheritdoc}
*/
public function isWildcard() {
return (bool) preg_match('/\\{[a-zA-Z0-9_]+\\}/', $this->value);
}
}
Classes
Name | Description |
---|---|
PathComponent | Represents a single component in a Drupal 8 route path. |