Passed
Push — master ( b42f46...a5fc60 )
by Abdul Malik
13:28 queued 03:21
created
src/Manager/SessionManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     public function clearSession(string $byContainer = null): void
127 127
     {
128 128
         (new Container())->getManager()
129
-             ->getStorage()
130
-             ->clear($byContainer);
129
+                ->getStorage()
130
+                ->clear($byContainer);
131 131
     }
132 132
 }
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Rector\Set\ValueObject\SetList;
6 6
 use Rector\Set\ValueObject\LevelSetList;
7 7
 
8
-return static function (RectorConfig $rectorConfig): void {
8
+return static function(RectorConfig $rectorConfig): void {
9 9
     $rectorConfig->sets([
10 10
         SetList::CODE_QUALITY,
11 11
         SetList::NAMING,
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
         SetList::CODING_STYLE
15 15
     ]);
16 16
 
17
-    $rectorConfig->paths([__DIR__ . '/config', __DIR__ . '/src', __DIR__ . '/test', __DIR__ . '/rector.php']);
17
+    $rectorConfig->paths([__DIR__.'/config', __DIR__.'/src', __DIR__.'/test', __DIR__.'/rector.php']);
18 18
     $rectorConfig->importNames();
19 19
 
20 20
     $rectorConfig->skip([
Please login to merge, or discard this patch.