Skip to content

Commit

Permalink
Disabled short_array_syntax for style checking due to need to support…
Browse files Browse the repository at this point in the history
… PHP < 5.4
  • Loading branch information
Jordan Hall committed Jul 27, 2015
1 parent ca7bf4d commit 14a2bba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
disabled:
- short_array_syntax
4 changes: 2 additions & 2 deletions helpers/GoogleHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ public static function getClient()

$client->setApplicationName('Rapid Web Google Contacts API');

$client->setScopes([/*
$client->setScopes(array(/*
'https://apps-apis.google.com/a/feeds/groups/',
'https://www.googleapis.com/auth/userinfo.email',
'https://apps-apis.google.com/a/feeds/alias/',
'https://apps-apis.google.com/a/feeds/user/',*/
'https://www.google.com/m8/feeds/',
/*'https://www.google.com/m8/feeds/user/',*/
]);
));

$client->setClientId($config->clientID);
$client->setClientSecret($config->clientSecret);
Expand Down

0 comments on commit 14a2bba

Please sign in to comment.