getPath() public method

public getPath ( )
Esempio n. 1
0
 /**
  * {@inheritdoc}
  *
  * Handle the trailing slash option.
  */
 public function getPath()
 {
     $pattern = parent::getPath();
     if ($this->getOption('add_trailing_slash') && '/' !== $pattern[strlen($pattern) - 1]) {
         $pattern .= '/';
     }
     return $pattern;
 }