Passed
Push — master ( f93deb...6b3ae4 )
by Jeff
02:42
created
src/Command/UserAddCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,11 +55,11 @@
 block discarded – undo
55 55
 
56 56
         $user->setDomain($domain);
57 57
         $user->setName(\mb_strtolower($input->getArgument('name')));
58
-        $user->setAdmin((bool)$input->getOption('admin'));
59
-        $user->setSendOnly((bool)$input->getOption('sendonly'));
58
+        $user->setAdmin((bool) $input->getOption('admin'));
59
+        $user->setSendOnly((bool) $input->getOption('sendonly'));
60 60
 
61 61
         if ($input->hasOption('quota')) {
62
-            $user->setQuota((int)$input->getOption('quota'));
62
+            $user->setQuota((int) $input->getOption('quota'));
63 63
         }
64 64
 
65 65
         if (!$input->getOption('password')) {
Please login to merge, or discard this patch.