PHPCS Fix

This commit is contained in:
Dan Cryer 2015-10-08 20:22:43 +01:00
parent 370eebd227
commit 2f859be369

View file

@ -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());