diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-06 15:56:33 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-06 15:56:33 +0200 |
commit | ca3fd1424eb1ed7b7a3fea9f6066414ab7319f5c (patch) | |
tree | 14fdb9f5114be27790f5e99edd9d7dea12251e08 | |
parent | 742f039dd89a3d878060b141c427ed994a7fb491 (diff) |
php-hoa-http: fix autoloader
-rw-r--r-- | php-hoa-http-autoload.php | 4 |
1 files 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); |