/**
  * @param Regex  $regex
  * @param string $path
  * @param null   $name
  */
 public function __construct(Regex $regex, $path, $name = null)
 {
     $path = str_replace('//', '/', $path);
     return parent::__construct($regex, $path, $name);
 }