Skip to content

Commit

Permalink
remove var_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
KaydenLiss committed Jul 31, 2023
1 parent d9a47da commit 902997e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Service/CurrentTeamService.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ public function getTeamsWithoutCurrentHierarchy($user, $current = null): ?array
$result = [];

if ($currentAndDescendants) {
for ($i = 0; $i < count($currentAndDescendants); $i++) {
var_dump($currentAndDescendants[$i]->getName());
}
for ($i = 0; $i < count($availableTeams); $i++) {
if (array_search($availableTeams[$i], $currentAndDescendants) === false) {
$result[] = $availableTeams[$i];
Expand Down

0 comments on commit 902997e

Please sign in to comment.