43 foreach ($this as $department)
45 $maxDepth = max($maxDepth, $department->getDepth());
48 $newCollection =
new static();
50 foreach ($this as $department)
52 if ($department->getDepth() === $maxDepth)
54 $newCollection[] = $department;
58 return $newCollection;