Code style fixes (camelCased variables).
This commit is contained in:
parent
4013fc76ff
commit
8d9c4824c7
15 changed files with 141 additions and 142 deletions
|
|
@ -45,10 +45,10 @@ class GroupController extends Controller
|
|||
'title' => $group->getTitle(),
|
||||
'id' => $group->getId(),
|
||||
];
|
||||
$projects_active = Factory::getStore('Project')->getByGroupId($group->getId(), false);
|
||||
$projects_archived = Factory::getStore('Project')->getByGroupId($group->getId(), true);
|
||||
$projectsActive = Factory::getStore('Project')->getByGroupId($group->getId(), false);
|
||||
$projectsArchived = Factory::getStore('Project')->getByGroupId($group->getId(), true);
|
||||
|
||||
$thisGroup['projects'] = array_merge($projects_active['items'], $projects_archived['items']);
|
||||
$thisGroup['projects'] = array_merge($projectsActive['items'], $projectsArchived['items']);
|
||||
$groups[] = $thisGroup;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue