Completed
Push — master ( d1404e...b9be27 )
by Jonathan André
08:02
created
src/Doctrine/Common/Interfaces/EntityTimestampInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -4,11 +4,20 @@
 block discarded – undo
4 4
 
5 5
 interface EntityTimestampInterface
6 6
 {
7
+    /**
8
+     * @return \DateTime
9
+     */
7 10
     public function getCreatedAt();
8 11
 
12
+    /**
13
+     * @return \DateTime
14
+     */
9 15
     public function getUpdatedAt();
10 16
 
11 17
     public function getDeletedAt();
12 18
 
19
+    /**
20
+     * @return void
21
+     */
13 22
     public function setDeletedAt($date);
14 23
 }
Please login to merge, or discard this patch.
src/Doctrine/ORM/Entities/BaseEntity.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -169,6 +169,9 @@
 block discarded – undo
169 169
         return $this;
170 170
     }
171 171
 
172
+    /**
173
+     * @param string $key
174
+     */
172 175
     final protected function checkOnyExceptInArray($key, array $options = null)
173 176
     {
174 177
         if (
Please login to merge, or discard this patch.
src/Lumen/Application/BaseApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return Bludata\Lumen\Application\BaseApplication
27
+     * @return BaseApplication
28 28
      */
29 29
     public function resource($descriptionGroup, $prefix, $controller, array $except = [], Closure $routes = null)
30 30
     {
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
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      *
57 57
      * @param string $token
58 58
      *
59
-     * @return Lcobucci\JWT\Token
59
+     * @return Token|null
60 60
      */
61 61
     public function decodeToken($token)
62 62
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Verify is validate token in signature.
78 78
      *
79
-     * @param Lcobucci\JWT\Token $token
79
+     * @param Token $token
80 80
      *
81 81
      * @return bool
82 82
      */
Please login to merge, or discard this patch.
src/Lumen/Http/Controllers/BaseController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
         return $this->mainService;
18 18
     }
19 19
 
20
+    /**
21
+     * @param Request $filters
22
+     */
20 23
     protected function translateFilters($filters)
21 24
     {
22 25
         if ($filters instanceof Request) {
Please login to merge, or discard this patch.