Inheritance: extends Pattern
Example #1
0
 public function parse($type, $url)
 {
     if (strpos($url, $this->prefix) === 0) {
         $url = substr($url, strlen($this->prefix));
     }
     return parent::parse($type, $url);
 }