Skip to content

Commit fbf70bb

Browse files
author
georgio
committed
update code style
1 parent 028ae95 commit fbf70bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/provider/instagram.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use OAuth\OAuth2\Service\Instagram;
99

1010

11-
require_once __DIR__.'/../bootstrap.php';
11+
require_once __DIR__ . '/../bootstrap.php';
1212

1313
$helper = new Example();
1414
$storage = new Session();
@@ -23,7 +23,7 @@
2323
$credentials = new Credentials($_GET['key'], $_GET['secret'], $helper->getCurrentUrl());
2424
$service = new Instagram($credentials, $client, $storage);
2525
echo $helper->getHeader();
26-
echo '<a href="'.$service->getAuthorizationUri().'">get access token</a>';
26+
echo '<a href="' . $service->getAuthorizationUri() . '">get access token</a>';
2727
echo $helper->getFooter();
2828
} elseif (!empty($_GET['code'])) {
2929
$credentials = new Credentials($_GET['key'], $_GET['secret'], $helper->getCurrentUrl());

0 commit comments

Comments
 (0)