Completed
Push — master ( fe3405...674d5a )
by Gorka
11s
created
src/Kreta/IdentityAccess/Application/Command/EditProfileCommand.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -25,6 +25,11 @@  discard block
 block discarded – undo
25 25
     private $imageMimeType;
26 26
     private $uploadedImage;
27 27
 
28
+    /**
29
+     * @param string|null $imageName
30
+     * @param string|null $imageMimeType
31
+     * @param string|null $uploadedImage
32
+     */
28 33
     public function __construct(
29 34
         string $id,
30 35
         string $email,
@@ -70,11 +75,17 @@  discard block
 block discarded – undo
70 75
         return $this->lastName;
71 76
     }
72 77
 
78
+    /**
79
+     * @return string
80
+     */
73 81
     public function imageName()
74 82
     {
75 83
         return $this->imageName;
76 84
     }
77 85
 
86
+    /**
87
+     * @return string
88
+     */
78 89
     public function imageMimeType()
79 90
     {
80 91
         return $this->imageMimeType;
Please login to merge, or discard this patch.