Completed
Push — master ( 2ff197...58043b )
by Sergi Tur
06:57
created
database/migrations/2017_05_10_151509_create_user_invitations_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 /**
8 8
  * Class CreateUserInvitationsTable.
Please login to merge, or discard this patch.
src/Http/Controllers/UserInvitationsController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * Remove the specified resource from storage.
52 52
      *
53 53
      * @param  int  $id
54
-     * @return \Illuminate\Http\Response
54
+     * @return \Illuminate\Http\JsonResponse
55 55
      */
56 56
     public function destroy($id)
57 57
     {
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     /**
166 166
      * Show accept user invitation form.
167 167
      *
168
-     * @param $invitation
168
+     * @param boolean $invitation
169 169
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
170 170
      */
171 171
     protected function showAcceptUserInvitationForm($invitation)
Please login to merge, or discard this patch.
src/Models/UserInvitation.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 use App\User;
6 6
 use Illuminate\Database\Eloquent\Model;
7 7
 
8
-use Acacha\Stateful\Traits\StatefulTrait;
9 8
 use Acacha\Stateful\Contracts\Stateful;
9
+use Acacha\Stateful\Traits\StatefulTrait;
10 10
 use Venturecraft\Revisionable\RevisionableTrait;
11 11
 
12 12
 /**
Please login to merge, or discard this patch.
src/Http/Controllers/UsersMigrationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Get users to migrate.
57 57
      *
58
-     * @param $request
58
+     * @param UsersMigrationRequest $request
59 59
      */
60 60
     protected function usersToMigrateByRequest($request)
61 61
     {
Please login to merge, or discard this patch.