Fixed constructor not parsing config options

1.0
Tom Anderson 2014-04-26 22:07:24 -07:00 committed by Tom Anderson
parent 667923f36d
commit 1a36805cec
1 changed files with 2 additions and 1 deletions

View File

@ -5,8 +5,9 @@ namespace League\OAuth2\Client\Provider;
class Eventbrite extends IdentityProvider class Eventbrite extends IdentityProvider
{ {
public function __construct() public function __construct($options)
{ {
parent::__construct($options);
$this->headers = array( $this->headers = array(
'Authorization' => 'Bearer' 'Authorization' => 'Bearer'
); );