Completed
Push — develop ( c635bd...85470e )
by
unknown
09:19 queued 10s
created
module/Cv/src/Cv/Entity/Status.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     public function __construct($status = self::NONPUBLIC)
48 48
     {
49 49
         if (!isset(static::$orderMap[$status])) {
50
-            throw new \DomainException('Unknown status: ' . $status);
50
+            throw new \DomainException('Unknown status: '.$status);
51 51
         }
52 52
         
53 53
         $this->name = $status;
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/StatusInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
 interface StatusInterface extends EntityInterface
17 17
 {
18 18
 
19
-    const NONPUBLIC =  /*@translate*/ 'private';
19
+    const NONPUBLIC = /*@translate*/ 'private';
20 20
 
21
-    const PUBLIC_TO_ALL =  /*@translate*/ 'public to all';
21
+    const PUBLIC_TO_ALL = /*@translate*/ 'public to all';
22 22
 
23 23
     public function __construct($status = self::NONPUBLIC);
24 24
 
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/Cv.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
     }
159 159
     
160 160
     /**
161
-     * @return ArrayCollection
161
+     * @return IdentityWrapper
162 162
      */
163 163
     public function getEducationsIndexedById()
164 164
     {
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     }
188 188
     
189 189
     /**
190
-     * @return ArrayCollection
190
+     * @return IdentityWrapper
191 191
      */
192 192
     public function getEmploymentsIndexedById()
193 193
     {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     }
217 217
     
218 218
     /**
219
-     * @return ArrayCollection
219
+     * @return IdentityWrapper
220 220
      */
221 221
     public function getSkillsIndexedById()
222 222
     {
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     }
295 295
 
296 296
     /**
297
-     * @return ArrayCollection
297
+     * @return IdentityWrapper
298 298
      */
299 299
     public function getLanguageSkillsIndexedById()
300 300
     {
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
     }
337 337
     
338 338
     /**
339
-     * @param Status|string $status
339
+     * @param string $status
340 340
      */
341 341
     public function setStatus($status)
342 342
     {
Please login to merge, or discard this patch.