Completed
Push — master ( d2354a...84b175 )
by Nik
02:25
created
src/Module/Command/ModuleCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
         if (in_array($this->getName(), ['module:register', 'module:unregister'])
45 45
             && $module->isThirdParty() && !$input->getOption('confirm-thirdparty')
46 46
         ) {
47
-            $output->writeln($module->isThirdParty() . ' is not a kernel module. Correct operation cannot be guaranteed for third-party modules!');
47
+            $output->writeln($module->isThirdParty().' is not a kernel module. Correct operation cannot be guaranteed for third-party modules!');
48 48
         }
49 49
     }
50 50
 
Please login to merge, or discard this patch.
src/Module/Exception/ModuleException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
      */
18 18
     public function __construct($message, $moduleName, \Exception $previous = null)
19 19
     {
20
-        parent::__construct("[$moduleName] " . $message, 0, $previous);
20
+        parent::__construct("[$moduleName] ".$message, 0, $previous);
21 21
     }
22 22
 }
23 23
\ No newline at end of file
Please login to merge, or discard this patch.