From a07d572399f6c67d0a6503882b27a23420649bd2 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Thu, 8 Oct 2015 20:22:43 +0100 Subject: [PATCH] PHPCS Fix --- PHPCI/Application.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PHPCI/Application.php b/PHPCI/Application.php index f2d40e0d..a6eb646c 100644 --- a/PHPCI/Application.php +++ b/PHPCI/Application.php @@ -136,7 +136,8 @@ class Application extends b8\Application protected function setLayoutVariables(View &$layout) { $groups = array(); - $groupList = b8\Store\Factory::getStore('ProjectGroup')->getWhere(array(), 100, 0, array(), array('title' => 'ASC')); + $groupStore = b8\Store\Factory::getStore('ProjectGroup'); + $groupList = $groupStore->getWhere(array(), 100, 0, array(), array('title' => 'ASC')); foreach ($groupList['items'] as $group) { $thisGroup = array('title' => $group->getTitle());