Skip to content

Commit

Permalink
implement registerService method
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoulgrave committed Sep 15, 2017
1 parent b2cf4da commit 5258c78
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 85 deletions.
96 changes: 11 additions & 85 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/Bear/Routing/FastRouteAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
namespace Bear\Routing;

use FastRoute;
use Psr\Container\ContainerInterface;

/**
* Class FastRouteAdapter
Expand Down Expand Up @@ -66,4 +67,14 @@ public function resolve(string $uri, string $method): RoutingResolution

return $routingResolution;
}

/**
* @param ContainerInterface $container
*
* @return void
*/
public function registerService(ContainerInterface $container): void
{
return;
}
}

0 comments on commit 5258c78

Please sign in to comment.