Completed
Push — master ( b7a0cb...746c52 )
by Rai
03:01
created
src/Doctrine/ORM/Entities/BaseEntity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -186,6 +186,9 @@
 block discarded – undo
186 186
         return $this->getOnlyStore();
187 187
     }
188 188
 
189
+    /**
190
+     * @param string $key
191
+     */
189 192
     final protected function checkOnyExceptInArray($key, array $options = null)
190 193
     {
191 194
         if (
Please login to merge, or discard this patch.
src/Lumen/Authentication/JWT/Interfaces/JWTInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,14 +25,14 @@
 block discarded – undo
25 25
      *
26 26
      * @param string $token
27 27
      *
28
-     * @return Lcobucci\JWT\Token
28
+     * @return Token|null
29 29
      */
30 30
     public function decodeToken($token);
31 31
 
32 32
     /**
33 33
      * Verify is validate token in signature.
34 34
      *
35
-     * @param Lcobucci\JWT\Token $token
35
+     * @param Token $token
36 36
      *
37 37
      * @return bool
38 38
      */
Please login to merge, or discard this patch.
src/Doctrine/ODM/MongoDB/Repositories/BaseRepository.php 1 patch
Doc Comments   +8 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         return $this;
27 27
     }
28 28
 
29
+    /**
30
+     * @return string
31
+     */
29 32
     abstract public function getMessageNotFound();
30 33
 
31 34
     public function validate(BaseEntityInterface $entity)
@@ -54,6 +57,9 @@  discard block
 block discarded – undo
54 57
         return parent::getClassMetadata();
55 58
     }
56 59
 
60
+    /**
61
+     * @return string|null
62
+     */
57 63
     public function getEntityName()
58 64
     {
59 65
         return parent::getDocumentName();
@@ -151,7 +157,7 @@  discard block
 block discarded – undo
151 157
     }
152 158
 
153 159
     /**
154
-     * @param Bludata\Entities\BaseEntityInterface $entity
160
+     * @param BaseEntityInterface $entity
155 161
      *
156 162
      * @return Bludata\Repositories\QueryWorker
157 163
      */
@@ -163,7 +169,7 @@  discard block
 block discarded – undo
163 169
     }
164 170
 
165 171
     /**
166
-     * @param Bludata\Entities\BaseEntityInterface $entity
172
+     * @param BaseEntityInterface $entity
167 173
      *
168 174
      * @return Bludata\Repositories\QueryWorker
169 175
      */
Please login to merge, or discard this patch.
src/Doctrine/Common/Interfaces/BaseEntityInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -16,14 +16,29 @@
 block discarded – undo
16 16
 
17 17
     public function forcePersist();
18 18
 
19
+    /**
20
+     * @return void
21
+     */
19 22
     public function prePersist();
20 23
 
24
+    /**
25
+     * @return void
26
+     */
21 27
     public function postPersist();
22 28
 
29
+    /**
30
+     * @return void
31
+     */
23 32
     public function preUpdate();
24 33
 
34
+    /**
35
+     * @return void
36
+     */
25 37
     public function postUpdate();
26 38
 
39
+    /**
40
+     * @return void
41
+     */
27 42
     public function preFlush();
28 43
 
29 44
     /**
Please login to merge, or discard this patch.