Skip to content

Commit

Permalink
Add missing interface methods in Registrar contract. (#15616)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmichot authored and taylorotwell committed Sep 26, 2016
1 parent 382c7bd commit d03eddb
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Illuminate/Contracts/Routing/Registrar.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,20 @@ public function resource($name, $controller, array $options = []);
* @return void
*/
public function group(array $attributes, Closure $callback);

/**
* Substitute the route bindings onto the route.
*
* @param \Illuminate\Routing\Route $route
* @return \Illuminate\Routing\Route
*/
public function substituteBindings($route);

/**
* Substitute the implicit Eloquent model bindings for the route.
*
* @param \Illuminate\Routing\Route $route
* @return void
*/
public function substituteImplicitBindings($route);
}

0 comments on commit d03eddb

Please sign in to comment.