Passed
Push — master ( f93deb...6b3ae4 )
by Jeff
02:42
created
src/Security/Provider/UserProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         $this->userRepository = $userRepository;
29 29
         $this->admins = array_map(
30
-            function (string $element) {
30
+            function(string $element) {
31 31
                 $element = mb_strtolower($element);
32 32
 
33 33
                 return trim($element);
Please login to merge, or discard this patch.
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.