ApiGen\Parser\Elements\GroupSorter::addMissingElementTypes PHP Метод

addMissingElementTypes() приватный метод

private addMissingElementTypes ( string $groupName )
$groupName string
    private function addMissingElementTypes($groupName)
    {
        foreach ($this->elements->getAll() as $type) {
            if (!isset($this->groups[$groupName][$type])) {
                $this->groups[$groupName][$type] = [];
            }
        }
    }