Completed
Push — master ( a38508...8df45b )
by Sherif
02:18
created
src/Modules/Core/Console/Commands/GenerateDoc.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
     /**
200 200
      * Get the given method body code.
201 201
      *
202
-     * @param  object $reflectionMethod
202
+     * @param  \ReflectionMethod $reflectionMethod
203 203
      * @return string
204 204
      */
205 205
     protected function getMethodBody($reflectionMethod)
Please login to merge, or discard this patch.
src/Modules/Core/Utl/ApiConsumer.php 1 patch
Doc Comments   -16 removed lines patch added patch discarded remove patch
@@ -28,10 +28,6 @@  discard block
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @param  string $uri
32
-     * @param  array  $data
33
-     * @param  array  $headers
34
-     * @param  string $content
35 31
      * @return \Illuminate\Http\Response
36 32
      */
37 33
     public function get()
@@ -40,10 +36,6 @@  discard block
 block discarded – undo
40 36
     }
41 37
 
42 38
     /**
43
-     * @param  string $uri
44
-     * @param  array  $data
45
-     * @param  array  $headers
46
-     * @param  string $content
47 39
      * @return \Illuminate\Http\Response
48 40
      */
49 41
     public function post()
@@ -52,10 +44,6 @@  discard block
 block discarded – undo
52 44
     }
53 45
 
54 46
     /**
55
-     * @param  string $uri
56
-     * @param  array  $data
57
-     * @param  array  $headers
58
-     * @param  string $content
59 47
      * @return \Illuminate\Http\Response
60 48
      */
61 49
     public function put()
@@ -64,10 +52,6 @@  discard block
 block discarded – undo
64 52
     }
65 53
 
66 54
     /**
67
-     * @param  string $uri
68
-     * @param  array  $data
69
-     * @param  array  $headers
70
-     * @param  string $content
71 55
      * @return \Illuminate\Http\Response
72 56
      */
73 57
     public function delete()
Please login to merge, or discard this patch.
src/Modules/Core/BaseClasses/BaseRepository.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      *
35 35
      * @param  array   $relations
36 36
      * @param  string  $sortBy
37
-     * @param  boolean $desc
37
+     * @param  integer $desc
38 38
      * @param  array   $columns
39 39
      * @return collection
40 40
      */
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * @param  integer $perPage
53 53
      * @param  array   $relations
54 54
      * @param  string  $sortBy
55
-     * @param  boolean $desc
55
+     * @param  integer $desc
56 56
      * @param  array   $columns
57 57
      * @return collection
58 58
      */
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      * @param  integer $perPage
155 155
      * @param  array   $relations
156 156
      * @param  string  $sortBy
157
-     * @param  boolean $desc
157
+     * @param  integer $desc
158 158
      * @param  array   $columns
159 159
      * @return collection
160 160
      */
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      * @param  integer $perPage
173 173
      * @param  array   $relations
174 174
      * @param  string  $sortBy
175
-     * @param  boolean $desc
175
+     * @param  integer $desc
176 176
      * @param  array   $columns
177 177
      * @return collection
178 178
      */
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
      * Save the given model to the storage.
189 189
      *
190 190
      * @param  array $data
191
-     * @return mixed
191
+     * @return boolean
192 192
      */
193 193
     public function save(array $data)
194 194
     {
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
      * @param  array   $conditions array of conditions
478 478
      * @param  array   $relations
479 479
      * @param  string  $sortBy
480
-     * @param  boolean $desc
480
+     * @param  integer $desc
481 481
      * @param  array   $columns
482 482
      * @return collection
483 483
      */
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
      * @param  array   $conditions array of conditions
510 510
      * @param  integer $perPage
511 511
      * @param  string  $sortBy
512
-     * @param  boolean $desc
512
+     * @param  integer $desc
513 513
      * @param  array   $columns
514 514
      * @return collection
515 515
      */
Please login to merge, or discard this patch.
src/Modules/Core/BaseClasses/BaseApiController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * Init new object.
35 35
      *
36 36
      * @param   mixed      $repo
37
-     * @param   CoreConfig $config
37
+     * @param   \App\Modules\Core\Utl\CoreConfig $config
38 38
      * @param   string     $modelResource
39 39
      * @return  void
40 40
      */
Please login to merge, or discard this patch.
src/Modules/Reporting/Http/Controllers/ReportController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      *
34 34
      * @param Request $request
35 35
      * @param  string $reportName Name of the requested report
36
-     * @return \Illuminate\Http\Response
36
+     * @return \Illuminate\Http\JsonResponse
37 37
      */
38 38
     public function getReport(Request $request, $reportName)
39 39
     {
Please login to merge, or discard this patch.
PushNotificationDevices/Repositories/PushNotificationDeviceRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * Register the given device to the logged in user.
22 22
      *
23 23
      * @param  array $data
24
-     * @return void
24
+     * @return boolean
25 25
      */
26 26
     public function registerDevice($data)
27 27
     {
Please login to merge, or discard this patch.
src/Modules/Users/Reppsitories/UserRepository.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * @param  array   $credentials
146 146
      * @param  boolean $skipConfirmEmail
147
-     * @return array
147
+     * @return boolean
148 148
      */
149 149
     public function register($credentials, $skipConfirmEmail = false)
150 150
     {
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
      * Save the given data to the logged in user.
345 345
      *
346 346
      * @param  array $data
347
-     * @return void
347
+     * @return boolean
348 348
      */
349 349
     public function saveProfile($data)
350 350
     {
Please login to merge, or discard this patch.
src/Modules/Core/Console/Commands/MakeModuleCommand.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -183,6 +183,11 @@
 block discarded – undo
183 183
         }
184 184
     }
185 185
 
186
+    /**
187
+     * @param string $contents
188
+     *
189
+     * @return string
190
+     */
186 191
     protected function replacePlaceholders($contents)
187 192
     {
188 193
         $modelName = \Str::camel($this->container['slug']);
Please login to merge, or discard this patch.