Completed
Pull Request — master (#11)
by alexfloppy
03:00
created
app/Http/Controllers/Api/v1/Auth/LoginController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 
109 109
     /**
110 110
      * @param Request $request
111
-     * @param $user
111
+     * @param \Illuminate\Contracts\Auth\Authenticatable|null $user
112 112
      * @param string $token
113 113
      *
114 114
      * @return JsonResponse
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      *   @SWG\Response(response="200", description="Return token or error message")
139 139
      * )
140 140
      *
141
-     * @return Response
141
+     * @return JsonResponse
142 142
      */
143 143
     public function logout()
144 144
     {
Please login to merge, or discard this patch.
app/Console/Commands/MakeJsonApiDemo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -175,8 +175,8 @@
 block discarded – undo
175 175
     }
176 176
 
177 177
     /**
178
-     * @param $src
179
-     * @param $dst
178
+     * @param string $src
179
+     * @param string $dst
180 180
      */
181 181
     protected function recurse_copy($src,$dst)
182 182
     {
Please login to merge, or discard this patch.
app/Console/Commands/MakeJsonApiDemoRemove.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 
170 170
             if (file_exists(app_path('JsonApi'))) {
171 171
                 if(!@rmdir(app_path('JsonApi'))) {
172
-                     throw new \League\Flysystem\Exception('JsonApi directory is not empty!');
172
+                        throw new \League\Flysystem\Exception('JsonApi directory is not empty!');
173 173
                 };
174 174
             }
175 175
         } catch (\League\Flysystem\Exception $e) {
Please login to merge, or discard this patch.