Exemple #1
0
 /**
  * Get the parameter matches for the path portion of the URI.
  *
  * @param  \Nova\Http\Request  $request
  * @return array
  */
 protected function bindPathParameters(Request $request)
 {
     preg_match($this->compiled->getRegex(), '/' . $request->decodedPath(), $matches);
     return $matches;
 }