Passed
Push — master ( 9164c0...eba218 )
by butschster
08:19
created
src/Framework/Bootloader/DomainBootloader.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@
 block discarded – undo
28 28
     ): InterceptableCore {
29 29
         $interceptableCore = new InterceptableCore($core, $dispatcher);
30 30
 
31
-        foreach (static::defineInterceptors() as $interceptor) {
32
-            if (!$interceptor instanceof CoreInterceptorInterface) {
31
+        foreach (static::defineInterceptors() as $interceptor){
32
+            if (!$interceptor instanceof CoreInterceptorInterface){
33 33
                 $interceptor = $container->get($interceptor);
34 34
             }
35 35
             $interceptableCore->addInterceptor($interceptor);
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,10 @@
 block discarded – undo
28 28
     ): InterceptableCore {
29 29
         $interceptableCore = new InterceptableCore($core, $dispatcher);
30 30
 
31
-        foreach (static::defineInterceptors() as $interceptor) {
32
-            if (!$interceptor instanceof CoreInterceptorInterface) {
31
+        foreach (static::defineInterceptors() as $interceptor)
32
+        {
33
+            if (!$interceptor instanceof CoreInterceptorInterface)
34
+            {
33 35
                 $interceptor = $container->get($interceptor);
34 36
             }
35 37
             $interceptableCore->addInterceptor($interceptor);
Please login to merge, or discard this patch.