Passed
Push — master ( 398850...f76e6c )
by
unknown
16:33 queued 13:19
created
src/Middleware/SentryContext.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function __construct(Factory $auth)
31 31
     {
32
-        $this->auth = $auth;
32
+        $this->auth=$auth;
33 33
     }
34 34
 
35 35
     /**
@@ -46,12 +46,12 @@  discard block
 block discarded – undo
46 46
             return $next($request);
47 47
         }
48 48
 
49
-        if (! $this->sentryIsBound()) {
49
+        if (!$this->sentryIsBound()) {
50 50
             return $next($request);
51 51
         }
52 52
 
53 53
         configureScope(
54
-            function (Scope $scope): void {
54
+            function(Scope $scope): void {
55 55
                 $scope->setUser($this->resolveUserContext($this->auth->getDefaultDriver(), $this->auth->guard()->user()));
56 56
             }
57 57
         );
Please login to merge, or discard this patch.
ecs.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
6 6
 use Symplify\EasyCodingStandard\Configuration\Option;
7 7
 use Symplify\EasyCodingStandard\ValueObject\Set\SetList;
8 8
 
9
-return static function (ContainerConfigurator $containerConfigurator): void {
10
-    $containerConfigurator->import(__DIR__ . '/vendor/zing/coding-standard/config/config.php');
11
-    $parameters = $containerConfigurator->parameters();
9
+return static function(ContainerConfigurator $containerConfigurator): void {
10
+    $containerConfigurator->import(__DIR__.'/vendor/zing/coding-standard/config/config.php');
11
+    $parameters=$containerConfigurator->parameters();
12 12
     $parameters->set(
13 13
         Option::SETS,
14 14
         [
@@ -23,10 +23,10 @@  discard block
 block discarded – undo
23 23
     $parameters->set(
24 24
         Option::PATHS,
25 25
         [
26
-            __DIR__ . '/src',
27
-            __DIR__ . '/tests',
28
-            __DIR__ . '/ecs.php',
29
-            __DIR__ . '/rector.php',
26
+            __DIR__.'/src',
27
+            __DIR__.'/tests',
28
+            __DIR__.'/ecs.php',
29
+            __DIR__.'/rector.php',
30 30
         ]
31 31
     );
32 32
 };
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 use Rector\SOLID\Rector\Class_\FinalizeClassesWithoutChildrenRector;
10 10
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
11 11
 
12
-return static function (ContainerConfigurator $containerConfigurator): void {
13
-    $parameters = $containerConfigurator->parameters();
12
+return static function(ContainerConfigurator $containerConfigurator): void {
13
+    $parameters=$containerConfigurator->parameters();
14 14
     $parameters->set(
15 15
         Option::SETS,
16 16
         [
@@ -38,10 +38,10 @@  discard block
 block discarded – undo
38 38
     $parameters->set(
39 39
         Option::PATHS,
40 40
         [
41
-            __DIR__ . '/src',
42
-            __DIR__ . '/tests',
43
-            __DIR__ . '/ecs.php',
44
-            __DIR__ . '/rector.php',
41
+            __DIR__.'/src',
42
+            __DIR__.'/tests',
43
+            __DIR__.'/ecs.php',
44
+            __DIR__.'/rector.php',
45 45
         ]
46 46
     );
47 47
 };
Please login to merge, or discard this patch.