diff --git a/Slim/Container.php b/Slim/Container.php index f75bb764d..fb08a933c 100644 --- a/Slim/Container.php +++ b/Slim/Container.php @@ -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 {