Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / Utility / Path / PathComponentInterface.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\drupalmoduleupgrader\Utility\Path\PathComponentInterface.
6  */
7
8 namespace Drupal\drupalmoduleupgrader\Utility\Path;
9
10 /**
11  * Represents a single component of a route path.
12  */
13 interface PathComponentInterface {
14
15   /**
16    * Constructs the path component.
17    *
18    * @param mixed $value
19    */
20   public function __construct($value);
21
22   /**
23    * @return string
24    */
25   public function __toString();
26
27   /**
28    * Returns if this component is considered a wildcard.
29    *
30    * @return boolean
31    */
32   public function isWildcard();
33
34 }