Skip to content

Commit 376824c

Browse files
authored
Merge pull request #62 from hakasapl/main
fixed linting errors
2 parents 546fa23 + 8e801ee commit 376824c

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

resources/lib/UnityLDAP.php

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,13 @@ public function getAllPIGroups($UnitySQL, $UnityMailer, $UnityRedis, $ignorecach
276276
$pi_groups = $this->pi_groupOU->getChildren(true);
277277

278278
foreach ($pi_groups as $pi_group) {
279-
array_push($out, new UnityGroup($pi_group->getAttribute("cn")[0], $this, $UnitySQL, $UnityMailer, $UnityRedis));
279+
array_push($out, new UnityGroup(
280+
$pi_group->getAttribute("cn")[0],
281+
$this,
282+
$UnitySQL,
283+
$UnityMailer,
284+
$UnityRedis
285+
));
280286
}
281287

282288
return $out;
@@ -300,7 +306,13 @@ public function getAllOrgGroups($UnitySQL, $UnityMailer, $UnityRedis, $ignorecac
300306
$org_groups = $this->org_groupOU->getChildren(true);
301307

302308
foreach ($org_groups as $org_group) {
303-
array_push($out, new UnityOrg($org_group->getAttribute("cn")[0], $this, $UnitySQL, $UnityMailer, $UnityRedis));
309+
array_push($out, new UnityOrg(
310+
$org_group->getAttribute("cn")[0],
311+
$this,
312+
$UnitySQL,
313+
$UnityMailer,
314+
$UnityRedis
315+
));
304316
}
305317

306318
return $out;

0 commit comments

Comments
 (0)