Fixing missing use statements

This commit is contained in:
Dan Cryer 2015-02-12 11:42:09 +00:00
parent c77ebd6c40
commit 84b00e305e
3 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@
namespace PHPCI;
use b8\Config;
use b8\Exception\HttpException\ForbiddenException;
use b8\Http\Request;
use b8\Http\Response;
use b8\View;

View file

@ -12,6 +12,7 @@ namespace PHPCI\Logging;
use b8\Store\Factory;
use Monolog\Handler\AbstractProcessingHandler;
use PHPCI\Model\Build;
use Psr\Log\LogLevel;
/**
* Class BuildDBLogHandler writes the build log to the database.

View file

@ -10,6 +10,7 @@
namespace PHPCI\Plugin;
use PHPCI\Builder;
use PHPCI\Helper\Lang;
use PHPCI\Model\Build;
/**