Skip to content

Commit

Permalink
Merge pull request #1645 from geggleto/3.x
Browse files Browse the repository at this point in the history
Add proper tags to container docblock
  • Loading branch information
codeguy committed Dec 4, 2015
2 parents 8d6c635 + cbddac2 commit cb87423
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Slim/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,18 @@
* - errorHandler: a callable with the signature: function($request, $response, $exception)
* - notFoundHandler: a callable with the signature: function($request, $response)
* - notAllowedHandler: a callable with the signature: function($request, $response, $allowedHttpMethods)
* - callableResolver: an instance of \Slim\Interfaces\CallableResolverInterface
* - callableResolver: an instance of callableResolver
*
* @property-read array settings
* @property-read \Slim\Interfaces\Http\EnvironmentInterface environment
* @property-read \Psr\Http\Message\ServerRequestInterface request
* @property-read \Psr\Http\Message\ResponseInterface response
* @property-read \Slim\Interfaces\RouterInterface router
* @property-read \Slim\Interfaces\InvocationStrategyInterface foundHandler
* @property-read callable errorHandler
* @property-read callable notFoundHandler
* @property-read callable notAllowedHandler
* @property-read \Slim\Interfaces\CallableResolverInterface callableResolver
*/
final class Container extends PimpleContainer implements ContainerInterface
{
Expand Down

0 comments on commit cb87423

Please sign in to comment.