diff options
author | msquare <msquare@notrademark.de> | 2017-12-26 10:29:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-26 10:29:16 +0100 |
commit | de61c88d6de67d12d5de5b6dd0ab6b8c82e5a290 (patch) | |
tree | aac6a43cb88e3d803da5809ab37885b41bc811c6 /src/Exceptions/Handlers | |
parent | 879918864a9c6da0fe9be1aca6c443ec8df0afc3 (diff) | |
parent | f8d0a7c5b00a58c646871e355b5876dcc5890be5 (diff) |
Merge pull request #388 from MyIgel/master
Formatting, Docstrings, and fixup
Diffstat (limited to 'src/Exceptions/Handlers')
-rw-r--r-- | src/Exceptions/Handlers/HandlerInterface.php | 1 | ||||
-rw-r--r-- | src/Exceptions/Handlers/Whoops.php | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Exceptions/Handlers/HandlerInterface.php b/src/Exceptions/Handlers/HandlerInterface.php index 9de33e1f..838fee4a 100644 --- a/src/Exceptions/Handlers/HandlerInterface.php +++ b/src/Exceptions/Handlers/HandlerInterface.php @@ -15,7 +15,6 @@ interface HandlerInterface /** * @param Throwable $e - * @return */ public function report(Throwable $e); } diff --git a/src/Exceptions/Handlers/Whoops.php b/src/Exceptions/Handlers/Whoops.php index 807f5eb0..73352105 100644 --- a/src/Exceptions/Handlers/Whoops.php +++ b/src/Exceptions/Handlers/Whoops.php @@ -15,6 +15,11 @@ class Whoops extends Legacy implements HandlerInterface /** @var Application */ protected $app; + /** + * Whoops constructor. + * + * @param Container $app + */ public function __construct(Container $app) { $this->app = $app; |