Completed
Push — master ( 17c95f...fee7e7 )
by Rai
05:53 queued 02:56
created
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.
src/Doctrine/Common/Interfaces/BaseRepositoryInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -4,12 +4,18 @@  discard block
 block discarded – undo
4 4
 
5 5
 interface BaseRepositoryInterface
6 6
 {
7
+    /**
8
+     * @return boolean|null
9
+     */
7 10
     public function validate(BaseEntityInterface $entity);
8 11
 
9 12
     public function getEntityName();
10 13
 
11 14
     public function query();
12 15
 
16
+    /**
17
+     * @return \Bludata\Doctrine\ORM\Repositories\QueryWorker
18
+     */
13 19
     public function findAll();
14 20
 
15 21
     public function findOneBy(array $filters, $abort = true);
@@ -32,7 +38,13 @@  discard block
 block discarded – undo
32 38
 
33 39
     public function createEntity();
34 40
 
41
+    /**
42
+     * @return \Bludata\Doctrine\ORM\Repositories\QueryWorker
43
+     */
35 44
     public function createQueryWorker();
36 45
 
46
+    /**
47
+     * @return string
48
+     */
37 49
     public function getMessageNotFound();
38 50
 }
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
@@ -12,6 +12,9 @@  discard block
 block discarded – undo
12 12
 {
13 13
     abstract public function preSave(BaseEntityInterface $entity);
14 14
 
15
+    /**
16
+     * @return string
17
+     */
15 18
     abstract public function getMessageNotFound();
16 19
 
17 20
     public function validate(BaseEntityInterface $entity)
@@ -40,6 +43,9 @@  discard block
 block discarded – undo
40 43
         return parent::getClassMetadata();
41 44
     }
42 45
 
46
+    /**
47
+     * @return string|null
48
+     */
43 49
     public function getEntityName()
44 50
     {
45 51
         return parent::getDocumentName();
@@ -137,7 +143,7 @@  discard block
 block discarded – undo
137 143
     }
138 144
 
139 145
     /**
140
-     * @param Bludata\Entities\BaseEntityInterface $entity
146
+     * @param BaseEntityInterface $entity
141 147
      *
142 148
      * @return Bludata\Repositories\QueryWorker
143 149
      */
@@ -149,7 +155,7 @@  discard block
 block discarded – undo
149 155
     }
150 156
 
151 157
     /**
152
-     * @param Bludata\Entities\BaseEntityInterface $entity
158
+     * @param BaseEntityInterface $entity
153 159
      *
154 160
      * @return Bludata\Repositories\QueryWorker
155 161
      */
Please login to merge, or discard this patch.