From 9dd6edc24ab5d78a225fb2bfa9955bca4b540c9f Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Mon, 5 Oct 2015 15:07:25 +0100 Subject: [PATCH] Fix --- PHPCI/BuildFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/BuildFactory.php b/PHPCI/BuildFactory.php index fdc8a212..1dbc4017 100644 --- a/PHPCI/BuildFactory.php +++ b/PHPCI/BuildFactory.php @@ -67,7 +67,7 @@ class BuildFactory $type = 'SubversionBuild'; break; } - + $class = '\\PHPCI\\Model\\Build\\' . $type; $build = new $class($build->getDataArray()); }