Completed
Push — master ( f5e17e...ddae74 )
by PROSPER
10s
created
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
@@ -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.
app/Http/Controllers/YahooController.php 2 patches
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.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function __construct()
27 27
     {
28
-         $this->baseUrl = self::YAHOO_API;
29
-         $this->client = new Client(['base_uri' => $this->baseUrl]);
28
+            $this->baseUrl = self::YAHOO_API;
29
+            $this->client = new Client(['base_uri' => $this->baseUrl]);
30 30
 
31
-         $query = "SELECT * FROM weather.forecast WHERE (location = 10007)";
31
+            $query = "SELECT * FROM weather.forecast WHERE (location = 10007)";
32 32
 
33
-         $relativeUrl = '?q=' . $query . '&format=json';
34
-         $this->setGetResponse($relativeUrl);
33
+            $relativeUrl = '?q=' . $query . '&format=json';
34
+            $this->setGetResponse($relativeUrl);
35 35
     }
36 36
 
37 37
     /**
@@ -62,10 +62,10 @@  discard block
 block discarded – undo
62 62
     }
63 63
 
64 64
 
65
-     /**
66
-     * Return all data to the Yahoo API dashboard
67
-     * @return mixed
68
-     */
65
+        /**
66
+         * Return all data to the Yahoo API dashboard
67
+         * @return mixed
68
+         */
69 69
     public function getPage()
70 70
     {
71 71
         $data = $this->getData();
Please login to merge, or discard this patch.
app/Http/Controllers/LinkedInController.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@
 block discarded – undo
29 29
      */
30 30
     protected $response;
31 31
 
32
-     /**
33
-     * Initialize the Controller with necessary arguments
34
-     */
32
+        /**
33
+         * Initialize the Controller with necessary arguments
34
+         */
35 35
     public function __construct()
36 36
     {
37 37
         $this->baseUrl = self::LINKEDIN_API;
38 38
         $this->client = new Client(['base_uri' => $this->baseUrl]);
39 39
     }
40 40
 
41
-     /**
42
-     * Set options for making the Client request
43
-     * @return  void
44
-     */
41
+        /**
42
+         * Set options for making the Client request
43
+         * @return  void
44
+         */
45 45
     private function setRequestOptions()
46 46
     {
47 47
         $authBearer = 'Bearer '. Auth::user()->getAccessToken();
Please login to merge, or discard this patch.
app/Http/Controllers/TwitterController.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getPage()
32 32
     {
33
-        if( Session::get('provider') !== 'twitter') {
33
+        if (Session::get('provider') !== 'twitter') {
34 34
             Auth::logout();
35 35
 
36 36
             Session::flush();
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
         $searchedTweets = json_decode($this->searchForTweets($this->searchItem), true);
42 42
 
43
-        return view('api.twitter')->withTweets($searchedTweets['statuses']);
43
+        return view('api.twitter')->withTweets($searchedTweets[ 'statuses' ]);
44 44
     }
45 45
 
46 46
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     private function getLatestTweets()
51 51
     {
52
-        return Twitter::getHomeTimeline(['count' => 2, 'format' => 'json']);
52
+        return Twitter::getHomeTimeline([ 'count' => 2, 'format' => 'json' ]);
53 53
     }
54 54
 
55 55
     /**
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     private function searchForTweets($item)
61 61
     {
62
-        return Twitter::getSearch(['q' => $item, 'count' => 4, 'format' => 'json']);
62
+        return Twitter::getSearch([ 'q' => $item, 'count' => 4, 'format' => 'json' ]);
63 63
     }
64 64
 
65 65
     /**
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
             'tweet' => 'required',
74 74
         ]);
75 75
 
76
-        $tweet = $request->input('tweet') . ' #LaravelHackathonStarter';
76
+        $tweet = $request->input('tweet').' #LaravelHackathonStarter';
77 77
 
78
-        Twitter::reconfig(['token' => Auth::user()->getAccessToken(), 'secret' => Auth::user()->getAccessTokenSecret()]);
78
+        Twitter::reconfig([ 'token' => Auth::user()->getAccessToken(), 'secret' => Auth::user()->getAccessTokenSecret() ]);
79 79
 
80
-        Twitter::postTweet(['status' => $tweet, 'format' => 'json']);
80
+        Twitter::postTweet([ 'status' => $tweet, 'format' => 'json' ]);
81 81
 
82 82
         return redirect()->back()->with('info', trans('texts.twitter.success'));
83 83
     }
Please login to merge, or discard this patch.
app/Http/Controllers/SlackController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
      */
27 27
     private function getAllUsersOnYourTeam($count = null)
28 28
     {
29
-        $list = (array)SlackUser::lists();
29
+        $list = (array) SlackUser::lists();
30 30
 
31 31
         if (is_null($count)) {
32
-           return $list['members'];
32
+           return $list[ 'members' ];
33 33
         }
34 34
 
35
-        return array_slice($list['members'], 0, $count);
35
+        return array_slice($list[ 'members' ], 0, $count);
36 36
     }
37 37
 
38 38
     /**
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
             'message'  => 'required'
47 47
         ]);
48 48
 
49
-        $message = $request->input('message') . ' #FromLaravelHackathonStarter :smile:';
49
+        $message = $request->input('message').' #FromLaravelHackathonStarter :smile:';
50 50
 
51 51
         SlackChat::message('#general', $message);
52 52
 
Please login to merge, or discard this patch.
app/Http/Controllers/NytController.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct()
29 29
     {
30
-         $this->baseUrl = self::API_URL;
31
-         $this->client = new Client(['base_uri' => $this->baseUrl]);
32
-         $this->setGetResponse($this->getRelativeUrl());
30
+            $this->baseUrl = self::API_URL;
31
+            $this->client = new Client(['base_uri' => $this->baseUrl]);
32
+            $this->setGetResponse($this->getRelativeUrl());
33 33
     }
34 34
 
35 35
     /**
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     public function __construct()
29 29
     {
30 30
          $this->baseUrl = self::API_URL;
31
-         $this->client = new Client(['base_uri' => $this->baseUrl]);
31
+         $this->client = new Client([ 'base_uri' => $this->baseUrl ]);
32 32
          $this->setGetResponse($this->getRelativeUrl());
33 33
     }
34 34
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     private function setGetResponse($relativeUrl)
50 50
     {
51
-        $this->response = $this->client->get($this->baseUrl . $relativeUrl, []);
51
+        $this->response = $this->client->get($this->baseUrl.$relativeUrl, [ ]);
52 52
     }
53 53
 
54 54
     /**
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     private function getData()
68 68
     {
69
-        return $this->getResponse()['results']['lists'][0]['books'];
69
+        return $this->getResponse()[ 'results' ][ 'lists' ][ 0 ][ 'books' ];
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this 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.
app/Http/Controllers/FacebookController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function getPage()
19 19
     {
20
-        if(Session::get('provider') !== 'facebook') {
20
+        if (Session::get('provider') !== 'facebook') {
21 21
             Auth::logout();
22 22
 
23 23
             Session::flush();
@@ -38,6 +38,6 @@  discard block
 block discarded – undo
38 38
     {
39 39
        $data = Facebook::get('/me?fields=id,name,cover,email,gender,first_name,last_name,locale,timezone,link,picture', Auth::user()->getAccessToken());
40 40
 
41
-      return json_decode($data->getGraphUser(),true);
41
+      return json_decode($data->getGraphUser(), true);
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
app/Http/Controllers/TwilioController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         ]);
32 32
 
33 33
         $number = $request->input('number');
34
-        $message = $request->input('message') . ' #LaravelHackathonStarter';
34
+        $message = $request->input('message').' #LaravelHackathonStarter';
35 35
 
36 36
         Twilio::message($number, $message);
37 37
 
Please login to merge, or discard this patch.
app/Http/Controllers/ContactController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
         $emailToSendTo = $request->input('email');
28 28
         $body = $request->input('message');
29 29
 
30
-        Mail::send('emails.contact', ['body' => $body], function ($message) use ($name,$emailToSendTo) {
30
+        Mail::send('emails.contact', [ 'body' => $body ], function($message) use ($name, $emailToSendTo) {
31 31
             $message->from('[email protected]', "From: {$name}");
32 32
 
33 33
             $message->to($emailToSendTo)->subject(trans('texts.contact.subject'));
Please login to merge, or discard this patch.