Passed
Pull Request — main (#32)
by Dimitri
13:44
created
src/Security/CheckPhpIni.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
     private static function outputForCli(array $output, array $thead, array $tbody): array
45 45
     {
46
-		$color = new Color;
46
+        $color = new Color;
47 47
 
48 48
         foreach ($output as $directive => $values) {
49 49
             $current        = $values['current'] ?? '';
Please login to merge, or discard this patch.
src/Cli/Commands/Utilities/PhpIniCheck.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
      * {@inheritDoc}
41 41
      */
42 42
     public function execute(array $params)
43
-	{
43
+    {
44 44
         /** @var array $data */
45
-		$data = CheckPhpIni::run();
45
+        $data = CheckPhpIni::run();
46 46
 
47
-		$this->table($data);
47
+        $this->table($data);
48 48
 
49 49
         return EXIT_SUCCESS;
50 50
     }
Please login to merge, or discard this patch.