Skip to content

Commit

Permalink
Version 1.1.3 - fixed "Driver [mollie] not supported"
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian de Laender committed May 25, 2016
1 parent df98359 commit a510020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mollie/laravel-mollie",
"description": "Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite",
"version": "1.1.2",
"version": "1.1.3",
"homepage": "https://github.com/mollie/laravel-mollie",
"license": "BSD-2-Clause",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion src/MollieServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected function setupConfig()
*/
protected function extendSocialite()
{
if (class_exists('Laravel\Socialite\Contracts\Factory')) {
if (interface_exists('Laravel\Socialite\Contracts\Factory')) {
$socialite = $this->app->make('Laravel\Socialite\Contracts\Factory');

$socialite->extend('mollie', function (Container $app) use ($socialite) {
Expand Down

0 comments on commit a510020

Please sign in to comment.