Formatting and namespace fixes

This commit is contained in:
Dennis Eichhorn 2016-03-26 14:59:09 +01:00
parent bb31881f59
commit cb9ee501d0
5 changed files with 23 additions and 21 deletions

View File

@ -50,7 +50,7 @@ class Autoloader
/** @noinspection PhpIncludeInspection */
include __DIR__ . '/../' . $class . '.php';
} else {
throw new \Exception();
throw new \Exception($class);
}
}

View File

@ -18,7 +18,7 @@ NOT IN USE
Will be implemented later
*/
/* TODO: implement */
namespace phpOMS\Cookie;
namespace phpOMS\DataStorage\Cookie;
/**
* @since 1.0.0

View File

@ -20,6 +20,8 @@ use phpOMS\Contract\RenderableInterface;
use phpOMS\Message\ResponseAbstract;
use phpOMS\Model\Html\Head;
use phpOMS\Utils\ArrayUtils;
use phpOMS\DataStorage\Cookie\CookieJar;
use phpOMS\DataStorage\Session\HttpSession;
/**
* Response class.

View File

@ -13,7 +13,7 @@
* @version 1.0.0
* @link http://orange-management.com
*/
namespace phpOMS\System;
namespace phpOMS\System\File;
/**
* Filesystem class.