Completed
Pull Request — master (#12)
by
unknown
06:39
created
app/Http/Controllers/MemberController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Store a newly created resource in storage.
29 29
      *
30
-     * @return Response
30
+     * @return \Illuminate\Http\RedirectResponse
31 31
      */
32 32
     public function store()
33 33
     {
Please login to merge, or discard this patch.
app/Http/Controllers/TeamController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     /**
28 28
      * Store a newly created resource in storage.
29 29
      *
30
-     * @return Response
30
+     * @return \Illuminate\Http\RedirectResponse
31 31
      */
32 32
     public function store()
33 33
     {
Please login to merge, or discard this patch.
app/League.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-     * @param $request
39
+     * @param Http\Requests\CreateLeague $request
40 40
      * @return static
41 41
      */
42 42
     public function addLeague($request)
Please login to merge, or discard this patch.
app/Team.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     }
47 47
 
48 48
     /**
49
-     * @param $request
49
+     * @param Http\Requests\CreateTeam $request
50 50
      * @return static
51 51
      */
52 52
     public function addTeam($request)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App;
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6
-use App\Http\Requests\Request;
7
-use Illuminate\Support\Facades\File;
8 6
 use Illuminate\Support\Facades\Storage;
9 7
 
10 8
 /**
Please login to merge, or discard this patch.
app/Auth/Guard.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Facebook\FacebookSession;
9 9
 use Facebook\FacebookRequest;
10 10
 use Facebook\GraphUser;
11
-use Illuminate;
12 11
 use Illuminate\Support\Facades\Config;
13 12
 use Illuminate\Support\Facades\Auth;
14 13
 use Illuminate\Support\Facades\Session;
Please login to merge, or discard this patch.
app/Auth/AuthServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
      */
16 16
     protected function registerAuthenticator()
17 17
     {
18
-        $this->app->bind('auth', function ($app) {
18
+        $this->app->bind('auth', function($app) {
19 19
             // Once the authentication service has actually been requested by the developer
20 20
             // we will set a variable in the application indicating such. This helps us
21 21
             // know that we need to set any queued cookies in the after event later.
22 22
             $app['auth.loaded'] = true;
23 23
             return new AuthManager($app);
24 24
         });
25
-        $this->app->singleton('auth.driver', function ($app) {
25
+        $this->app->singleton('auth.driver', function($app) {
26 26
             return $app['auth']->guard();
27 27
         });
28 28
     }
Please login to merge, or discard this patch.