From ca3fd1424eb1ed7b7a3fea9f6066414ab7319f5c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 6 Apr 2016 15:56:33 +0200 Subject: php-hoa-http: fix autoloader --- php-hoa-http-autoload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php-hoa-http-autoload.php b/php-hoa-http-autoload.php index d89bd14..e40fa04 100644 --- a/php-hoa-http-autoload.php +++ b/php-hoa-http-autoload.php @@ -7,10 +7,10 @@ $vendor = '/usr/share/php'; foreach ([ $vendor . '/Hoa/Consistency/autoload.php' => true, $vendor . '/Hoa/Exception/autoload.php' => true, - $vendor . '/Hoa/Zformat/autoload.php' => true, + $vendor . '/Hoa/Stream/autoload.php' => true, ] as $dep => $mandatory) { if ($mandatory || file_exists($dep)) require_once($dep); } -$fedoraHoaLoader->addNamespace('Hoa\\Router\\', __DIR__, true); +$fedoraHoaLoader->addNamespace('Hoa\\Http\\', __DIR__, true); -- cgit