@@ -9,10 +9,10 @@ |
||
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'); |
@@ -31,7 +31,7 @@ discard block |
||
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 |
||
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 |
@@ -41,8 +41,8 @@ |
||
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 | } |
@@ -16,9 +16,9 @@ |
||
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')); |
@@ -38,8 +38,8 @@ |
||
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 | /** |
@@ -29,19 +29,19 @@ |
||
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(); |
@@ -27,9 +27,9 @@ |
||
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 | /** |
@@ -25,13 +25,13 @@ discard block |
||
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 |
||
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(); |
@@ -23,28 +23,28 @@ |
||
23 | 23 | */ |
24 | 24 | public function register() |
25 | 25 | { |
26 | - // |
|
27 | - // environment specific application initialization |
|
28 | - // |
|
29 | - switch( $this->app->environment() ) |
|
30 | - { |
|
31 | - // development env |
|
32 | - case 'local': |
|
33 | - if( $this->app->runningInConsole() ) |
|
34 | - { |
|
35 | - // Some dev tools to generate some code completion helpers (some fake php files) |
|
36 | - $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); |
|
37 | - } |
|
38 | - // A 'in browser' debug bar |
|
39 | - $this->app->register(\Barryvdh\Debugbar\ServiceProvider::class); |
|
40 | - break; |
|
41 | - // testing env |
|
42 | - case '': |
|
43 | - break; |
|
44 | - // production env |
|
45 | - case '': |
|
46 | - break; |
|
47 | - } |
|
26 | + // |
|
27 | + // environment specific application initialization |
|
28 | + // |
|
29 | + switch( $this->app->environment() ) |
|
30 | + { |
|
31 | + // development env |
|
32 | + case 'local': |
|
33 | + if( $this->app->runningInConsole() ) |
|
34 | + { |
|
35 | + // Some dev tools to generate some code completion helpers (some fake php files) |
|
36 | + $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class); |
|
37 | + } |
|
38 | + // A 'in browser' debug bar |
|
39 | + $this->app->register(\Barryvdh\Debugbar\ServiceProvider::class); |
|
40 | + break; |
|
41 | + // testing env |
|
42 | + case '': |
|
43 | + break; |
|
44 | + // production env |
|
45 | + case '': |
|
46 | + break; |
|
47 | + } |
|
48 | 48 | |
49 | 49 | } |
50 | 50 | } |