From 420d0ca4dd6cf075204867de28c2e6d5b1b68184 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 6 Nov 2014 06:57:39 -0500 Subject: Remove vendor again --- vendor/lusitanian/oauth/tests/bootstrap.php | 42 ----------------------------- 1 file changed, 42 deletions(-) delete mode 100644 vendor/lusitanian/oauth/tests/bootstrap.php (limited to 'vendor/lusitanian/oauth/tests/bootstrap.php') diff --git a/vendor/lusitanian/oauth/tests/bootstrap.php b/vendor/lusitanian/oauth/tests/bootstrap.php deleted file mode 100644 index 193b857a..00000000 --- a/vendor/lusitanian/oauth/tests/bootstrap.php +++ /dev/null @@ -1,42 +0,0 @@ - - * @author David Desberg - * @copyright Copyright (c) 2012 Pieter Hordijk - * @license http://www.opensource.org/licenses/mit-license.html MIT License - */ -namespace OAuthTest; - -/** - * Setting up the default timezone. because well... PHP sucks - */ -date_default_timezone_set('Europe/Amsterdam'); - -/** - * Simple SPL autoloader for the OAuthTest mocks - * - * @param string $class The class name to load - * - * @return void - */ -spl_autoload_register(function ($class) { - $nslen = strlen(__NAMESPACE__); - if (substr($class, 0, $nslen) !== __NAMESPACE__) { - return; - } - $path = substr(str_replace('\\', '/', $class), $nslen); - $path = __DIR__ . $path . '.php'; - if (file_exists($path)) { - require $path; - } -}); - -/** - * Fire up the autoloader - */ -require_once __DIR__ . '/../vendor/autoload.php'; -- cgit v1.2.3