Completed
Push — master ( bbe9d4...e82ffc )
by De Cramer
10s
created
src/eXpansion/Framework/Core/Services/Application/AbstractApplication.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         foreach ($extensions as $extension => $description) {
95 95
             if (!extension_loaded($extension)) {
96 96
                 $console->writeln(
97
-                    "<error>eXpansion needs PHP extension $extension to run. Enable it to run eXpansion => " . $description . "</error>"
97
+                    "<error>eXpansion needs PHP extension $extension to run. Enable it to run eXpansion => ".$description."</error>"
98 98
                 );
99 99
                 $status = false;
100 100
                 $showIni = true;
@@ -107,14 +107,14 @@  discard block
 block discarded – undo
107 107
         foreach ($recommend as $extension => $reason) {
108 108
             if (!extension_loaded($extension)) {
109 109
                 $console->writeln(
110
-                    "<error>eXpansion works better with PHP extension</error> <info>$extension</info>: " . $reason . ""
110
+                    "<error>eXpansion works better with PHP extension</error> <info>$extension</info>: ".$reason.""
111 111
                 );
112 112
                 $showIni = true;
113 113
             }
114 114
         }
115 115
 
116 116
         if ($showIni) {
117
-            $console->writeln('<info>[PHP] PHP is using fallowing ini file :</info> "'. php_ini_loaded_file() .'"');
117
+            $console->writeln('<info>[PHP] PHP is using fallowing ini file :</info> "'.php_ini_loaded_file().'"');
118 118
             sleep(5);
119 119
         }
120 120
         return $status;
Please login to merge, or discard this patch.