From eb1de6598347f0b00d13a4a8ba20c475d149b1fa Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 15 May 2014 18:13:49 +0200 Subject: use composer-provided autoloader if it exists --- scripts/index.php | 13 +------------ scripts/search.php | 13 +------------ 2 files changed, 2 insertions(+), 24 deletions(-) (limited to 'scripts') diff --git a/scripts/index.php b/scripts/index.php index c1e67af..1f7a7ac 100644 --- a/scripts/index.php +++ b/scripts/index.php @@ -2,18 +2,7 @@ //index repositories in elasticsearch namespace phorkie; -set_include_path( - __DIR__ . '/../src/' - . PATH_SEPARATOR . get_include_path() -); -spl_autoload_register( - function ($class) { - $file = str_replace(array('\\', '_'), '/', $class) . '.php'; - if (stream_resolve_include_path($file)) { - require $file; - } - } -); +require_once __DIR__ . '/../src/phorkie/autoload.php'; require_once __DIR__ . '/../data/config.default.php'; if (file_exists(__DIR__ . '/../data/config.php')) { require_once __DIR__ . '/../data/config.php'; diff --git a/scripts/search.php b/scripts/search.php index d7d1b64..121c7e2 100644 --- a/scripts/search.php +++ b/scripts/search.php @@ -2,18 +2,7 @@ //search namespace phorkie; -set_include_path( - __DIR__ . '/../src/' - . PATH_SEPARATOR . get_include_path() -); -spl_autoload_register( - function ($class) { - $file = str_replace(array('\\', '_'), '/', $class) . '.php'; - if (stream_resolve_include_path($file)) { - require $file; - } - } -); +require_once __DIR__ . '/../src/phorkie/autoload.php'; require_once __DIR__ . '/../data/config.default.php'; if (file_exists(__DIR__ . '/../data/config.php')) { require_once __DIR__ . '/../data/config.php'; -- cgit v1.2.3