Completed
Push — master ( 540322...4a8ccb )
by PROSPER
09:39 queued 10s
created
app/Http/Controllers/WebScrapingController.php 2 patches
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
     /**
35 35
      * Scrape the Links
36
-     * @param $siteToCrawl
36
+     * @param string $siteToCrawl
37 37
      * @return array
38 38
      */
39 39
     public function getData($siteToCrawl)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use App\Http\Requests;
6 5
 use Goutte\Client;
7 6
 
8 7
 class WebScrapingController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/ClockworkController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use Illuminate\Http\Request;
6
-use App\Http\Requests;
7 6
 use MJErwin\Clockwork\ClockworkClient;
8 7
 use MJErwin\Clockwork\Message;
9 8
 
Please login to merge, or discard this patch.
app/Http/Controllers/NytController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use GuzzleHttp\Client;
6
-use App\Http\Requests;
7 6
 
8 7
 class NytController extends Controller
9 8
 {
Please login to merge, or discard this patch.
app/Http/Controllers/OauthController.php 2 patches
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@  discard block
 block discarded – undo
25 25
         return $this->execute(($request->has('code') || $request->has('oauth_token')), $provider);
26 26
     }
27 27
 
28
+    /**
29
+     * @param boolean $request
30
+     */
28 31
     public function execute($request, $provider)
29 32
     {
30 33
         if (! $request) {
@@ -40,7 +43,7 @@  discard block
 block discarded – undo
40 43
     /**
41 44
      * Find a user by username or create a new user
42 45
      *
43
-     * @param $userData
46
+     * @param \Laravel\Socialite\Contracts\User $userData
44 47
      * @param $provider
45 48
      *
46 49
      * @return \App\User
@@ -130,7 +133,7 @@  discard block
 block discarded – undo
130 133
     /**
131 134
      * Get Data from Social Media Account
132 135
      * @param  string $provider
133
-     * @return collection
136
+     * @return \Laravel\Socialite\Contracts\User
134 137
      */
135 138
     private function getSocialUser($provider)
136 139
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Http\Request;
6 6
 use App\User;
7
-use App\Http\Requests;
8 7
 use Illuminate\Contracts\Auth\Guard;
9 8
 use Laravel\Socialite\Contracts\Factory as Socialite;
10 9
 use Session;
Please login to merge, or discard this patch.
app/Http/Controllers/YahooController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use GuzzleHttp\Client;
6
-use App\Http\Requests;
7 6
 
8 7
 class YahooController extends Controller
9 8
 {
Please login to merge, or discard this patch.