Completed
Pull Request — master (#21)
by
unknown
04:01
created
app/Http/Controllers/NytController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,11 +27,11 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct()
29 29
     {
30
-         $this->baseUrl = 'http://api.nytimes.com/svc';
31
-         $this->client = new Client(['base_uri' => $this->baseUrl]);
30
+            $this->baseUrl = 'http://api.nytimes.com/svc';
31
+            $this->client = new Client(['base_uri' => $this->baseUrl]);
32 32
 
33
-         $relativeUrl = '/books/v3/lists/overview.json?api-key=' . env('NYT_BOOKS_API_KEY');
34
-         $this->setGetResponse($relativeUrl);
33
+            $relativeUrl = '/books/v3/lists/overview.json?api-key=' . env('NYT_BOOKS_API_KEY');
34
+            $this->setGetResponse($relativeUrl);
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/SteamController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
 
10 10
 class SteamController extends Controller
11 11
 {
12
-     /**
13
-     * Return all data to the Steam API dashboard
14
-     * @return mixed
15
-     */
12
+        /**
13
+         * Return all data to the Steam API dashboard
14
+         * @return mixed
15
+         */
16 16
     public function getPage()
17 17
     {
18 18
         return view('api.steam');
Please login to merge, or discard this patch.
app/Http/Controllers/YahooController.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@  discard block
 block discarded – undo
10 10
 
11 11
 class YahooController extends Controller
12 12
 {
13
-     /**
14
-     * Instance of Guzzle Client
15
-     * @var object
16
-     */
13
+        /**
14
+         * Instance of Guzzle Client
15
+         * @var object
16
+         */
17 17
     protected $client;
18 18
 
19 19
     /**
@@ -27,13 +27,13 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function __construct()
29 29
     {
30
-         $this->baseUrl = 'https://query.yahooapis.com/v1/public/yql';
31
-         $this->client = new Client(['base_uri' => $this->baseUrl]);
30
+            $this->baseUrl = 'https://query.yahooapis.com/v1/public/yql';
31
+            $this->client = new Client(['base_uri' => $this->baseUrl]);
32 32
 
33
-         $query = "SELECT * FROM weather.forecast WHERE (location = 10007)";
33
+            $query = "SELECT * FROM weather.forecast WHERE (location = 10007)";
34 34
 
35
-         $relativeUrl = '?q=' . $query . '&format=json';
36
-         $this->setGetResponse($relativeUrl);
35
+            $relativeUrl = '?q=' . $query . '&format=json';
36
+            $this->setGetResponse($relativeUrl);
37 37
     }
38 38
 
39 39
     /**
@@ -64,10 +64,10 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
 
67
-     /**
68
-     * Return all data to the Yahoo API dashboard
69
-     * @return mixed
70
-     */
67
+        /**
68
+         * Return all data to the Yahoo API dashboard
69
+         * @return mixed
70
+         */
71 71
     public function getPage()
72 72
     {
73 73
         $data = $this->getData();
Please login to merge, or discard this patch.
app/Http/Controllers/SlackController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $list = (array)SlackUser::lists();
32 32
 
33 33
         if (is_null($count)) {
34
-           return $list['members'];
34
+            return $list['members'];
35 35
         }
36 36
 
37 37
         return array_slice($list['members'], 0, $count);
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      */
45 45
     public function sendMessageToTeam(Request $request)
46 46
     {
47
-         $this->validate($request, [
47
+            $this->validate($request, [
48 48
             'message'  => 'required'
49 49
         ]);
50 50
 
Please login to merge, or discard this patch.
app/Http/Controllers/FacebookController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
      */
42 42
     private function getData()
43 43
     {
44
-       $data = Facebook::get('/me?fields=id,name,cover,email,gender,first_name,last_name,locale,timezone,link,picture', Auth::user()->getAccessToken());
44
+        $data = Facebook::get('/me?fields=id,name,cover,email,gender,first_name,last_name,locale,timezone,link,picture', Auth::user()->getAccessToken());
45 45
 
46
-      return json_decode($data->getGraphUser(),true);
46
+        return json_decode($data->getGraphUser(),true);
47 47
     }
48 48
 }
Please login to merge, or discard this patch.
app/Http/Controllers/LinkedInController.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@  discard block
 block discarded – undo
13 13
 
14 14
 class LinkedInController extends Controller
15 15
 {
16
-     /**
17
-     * LinkedIn API base Url
18
-     * @var string
19
-     */
16
+        /**
17
+         * LinkedIn API base Url
18
+         * @var string
19
+         */
20 20
     protected $baseUrl;
21 21
 
22 22
     /**
@@ -31,19 +31,19 @@  discard block
 block discarded – undo
31 31
      */
32 32
     protected $response;
33 33
 
34
-     /**
35
-     * Initialize the Controller with necessary arguments
36
-     */
34
+        /**
35
+         * Initialize the Controller with necessary arguments
36
+         */
37 37
     public function __construct()
38 38
     {
39 39
         $this->baseUrl = 'https://api.linkedin.com/v1';
40 40
         $this->client = new Client(['base_uri' => $this->baseUrl]);
41 41
     }
42 42
 
43
-     /**
44
-     * Set options for making the Client request
45
-     * @return  void
46
-     */
43
+        /**
44
+         * Set options for making the Client request
45
+         * @return  void
46
+         */
47 47
     private function setRequestOptions()
48 48
     {
49 49
         $authBearer = 'Bearer '. Auth::user()->getAccessToken();
Please login to merge, or discard this patch.
app/Http/Controllers/FoursquareController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
      */
17 17
     protected $foursquare;
18 18
 
19
-     /**
20
-     * Initialize the Controller with necessary arguments
21
-     */
19
+        /**
20
+         * Initialize the Controller with necessary arguments
21
+         */
22 22
     public function __construct()
23 23
     {
24 24
         $this->foursquare = new FoursquareApi(env('FOURSQUARE_CLIENT_ID'), env('FOURSQUARE_CLIENT_SECRET'));
Please login to merge, or discard this patch.
app/Http/Controllers/TumblrController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
      */
17 17
     protected $foursquare;
18 18
 
19
-     /**
20
-     * Initialize the Controller with necessary arguments
21
-     */
19
+        /**
20
+         * Initialize the Controller with necessary arguments
21
+         */
22 22
     public function __construct()
23 23
     {
24 24
         $this->foursquare = new FoursquareApi(env('FOURSQUARE_CLIENT_ID'), env('FOURSQUARE_CLIENT_SECRET'));
Please login to merge, or discard this patch.
app/Http/Controllers/LastFmController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
         $tracks = array_slice($this->getTopTracks(), 0, 10);
39 39
 
40 40
         return view('api.lastfm')->withDetails($details)
41
-                                 ->withAlbums($albums)
42
-                                 ->withTracks($tracks);
41
+                                    ->withAlbums($albums)
42
+                                    ->withTracks($tracks);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.