Completed
Pull Request — master (#10)
by
unknown
03:16
created
Command/DeleteUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
 
45 45
         $handler->handle($command);
46 46
 
47
-        $output->writeln($username . ' has been deleted');
47
+        $output->writeln($username.' has been deleted');
48 48
     }
49 49
 }
Please login to merge, or discard this patch.
Command/CreateUserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,6 +52,6 @@
 block discarded – undo
52 52
 
53 53
         $handler->handle($command);
54 54
 
55
-        $output->writeln($username . ' has been created');
55
+        $output->writeln($username.' has been created');
56 56
     }
57 57
 }
Please login to merge, or discard this patch.
Command/UpdateUser.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
      * UpdateUser constructor.
31 31
      *
32 32
      * @param UserInterface $user
33
-     * @param $username
34
-     * @param $password
35
-     * @param $displayName
33
+     * @param string $username
34
+     * @param string $password
35
+     * @param string $displayName
36 36
      */
37 37
     public function __construct(UserInterface $user, $username, $password, $displayName)
38 38
     {
Please login to merge, or discard this patch.
Command/UserCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     protected function getAllValidUserClasses(UserRepositoryCollection $userRepositoryCollection)
20 20
     {
21 21
         return array_map(
22
-            function (UserRepository $repository) {
22
+            function(UserRepository $repository) {
23 23
                 return $repository->getSupportedClass();
24 24
             },
25 25
             $userRepositoryCollection->all()
Please login to merge, or discard this patch.