From d2d966ee6975fb2df48f8b63aa24b9bd8f8de6c9 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Tue, 25 Feb 2014 16:59:28 +0000 Subject: [PATCH] Fixing bug in Builder related to the new PHPCI\Store --- PHPCI/Builder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PHPCI/Builder.php b/PHPCI/Builder.php index e1fa56c5..eb3e08e9 100644 --- a/PHPCI/Builder.php +++ b/PHPCI/Builder.php @@ -14,8 +14,8 @@ use PHPCI\Helper\CommandExecutor; use PHPCI\Helper\MailerFactory; use PHPCI\Logging\BuildLogger; use PHPCI\Model\Build; -use b8\Store; use b8\Config; +use b8\Store\Factory; use Psr\Log\LoggerAwareInterface; use Psr\Log\LoggerInterface; use Psr\Log\LogLevel; @@ -114,7 +114,7 @@ class Builder implements LoggerAwareInterface public function __construct(Build $build, LoggerInterface $logger = null) { $this->build = $build; - $this->store = Store\Factory::getStore('Build'); + $this->store = Factory::getStore('Build'); $this->buildLogger = new BuildLogger($logger, $build);