We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028ae95 commit fbf70bbCopy full SHA for fbf70bb
1 file changed
examples/provider/instagram.php
@@ -8,7 +8,7 @@
8
use OAuth\OAuth2\Service\Instagram;
9
10
11
-require_once __DIR__.'/../bootstrap.php';
+require_once __DIR__ . '/../bootstrap.php';
12
13
$helper = new Example();
14
$storage = new Session();
@@ -23,7 +23,7 @@
23
$credentials = new Credentials($_GET['key'], $_GET['secret'], $helper->getCurrentUrl());
24
$service = new Instagram($credentials, $client, $storage);
25
echo $helper->getHeader();
26
- echo '<a href="'.$service->getAuthorizationUri().'">get access token</a>';
+ echo '<a href="' . $service->getAuthorizationUri() . '">get access token</a>';
27
echo $helper->getFooter();
28
} elseif (!empty($_GET['code'])) {
29
0 commit comments