From c423ef810f2d3ce6be1645e426b36923b6046680 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 4 Sep 2012 12:33:17 +0100 Subject: [PATCH] Require instead of include --- src/Oauth2/Client/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }