Skip to content

Commit f376b6e

Browse files
committed
Apply fixes from StyleCI
1 parent e7e4eaa commit f376b6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Two/LinkedInProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ protected function getUserByToken($token)
5555
* @return array
5656
*/
5757
protected function getBasicProfile($token)
58-
{
59-
$fields = ["id","firstName","lastName","profilePicture(displayImage~:playableStreams)"];
58+
{
59+
$fields = ['id', 'firstName', 'lastName', 'profilePicture(displayImage~:playableStreams)'];
6060

6161
if (in_array('r_liteprofile', $this->getScopes())) {
6262
array_push($fields, 'vanityName');
@@ -68,7 +68,7 @@ protected function getBasicProfile($token)
6868
'X-RestLi-Protocol-Version' => '2.0.0',
6969
],
7070
RequestOptions::QUERY => [
71-
'projection' => "(".implode(',',$fields).")",
71+
'projection' => '('.implode(',', $fields).')',
7272
],
7373
]);
7474

0 commit comments

Comments
 (0)