diff --git a/src/Oauth2/Client/Client.php b/src/Oauth2/Client/Client.php index febd5b12..bb91eb29 100755 --- a/src/Oauth2/Client/Client.php +++ b/src/Oauth2/Client/Client.php @@ -25,7 +25,7 @@ class Provider { $name = ucfirst(strtolower($name)); - include_once 'Provider/'.$name.'.php'; + require_once 'Provider/'.$name.'.php'; return new $name($options); }