Completed
Push — master ( d28c59...06e70d )
by Peter
05:00
created
Category
src/Helpers/CommandWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 
38 38
 	public function add(Command $command, $namespace = '')
39 39
 	{
40
-		if(strlen($namespace))
40
+		if (strlen($namespace))
41 41
 		{
42 42
 			$command->setName($namespace . ':' . $command->getName());
43 43
 		}
Please login to merge, or discard this patch.
src/Commands/BuildCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 	protected function execute(InputInterface $input, OutputInterface $output)
43 43
 	{
44 44
 		$signal = new Signal();
45
-		if(!is_dir($signal->runtimePath))
45
+		if (!is_dir($signal->runtimePath))
46 46
 		{
47 47
 			mkdir($signal->runtimePath);
48 48
 		}
Please login to merge, or discard this patch.