Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / src / Utility / Path / Drupal8 / PathUtility.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\drupalmoduleupgrader\Utility\Path\PathUtilityBase.
6  */
7
8 namespace Drupal\drupalmoduleupgrader\Utility\Path\Drupal8;
9
10 use Drupal\drupalmoduleupgrader\Utility\Path\PathUtilityBase;
11
12 /**
13  * Represents a Drupal 8 route path.
14  */
15 class PathUtility extends PathUtilityBase {
16
17   /**
18    * {@inheritdoc}
19    */
20   public static function getComponent($value) {
21     return new PathComponent($value);
22   }
23
24 }