Passed
Push — master ( c734d9...025b20 )
by Mike
03:31
created
src/Xervice/ExceptionHandler/ExceptionHandlerDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,13 +22,13 @@
 block discarded – undo
22 22
      */
23 23
     public function handleDependencies(DependencyContainerInterface $container): DependencyContainerInterface
24 24
     {
25
-        $container[self::EXCEPTION_HANDLER] = function () {
25
+        $container[self::EXCEPTION_HANDLER] = function() {
26 26
             return new HandlerCollection(
27 27
                 $this->getExceptionHandler()
28 28
             );
29 29
         };
30 30
 
31
-        $container[self::EXCEPTION_REGISTER] = function () {
31
+        $container[self::EXCEPTION_REGISTER] = function() {
32 32
             return new RegisterCollection(
33 33
                 $this->getExceptionRegister()
34 34
             );
Please login to merge, or discard this patch.