ApiGen\Parser\Elements\ElementStorage::__construct PHP Метод

__construct() публичный метод

public __construct ( ApiGen\Contracts\Parser\ParserStorageInterface $parserResult, ApiGen\Contracts\Configuration\ConfigurationInterface $configuration, ApiGen\Contracts\Parser\Elements\GroupSorterInterface $groupSorter, ApiGen\Contracts\Generator\Resolvers\ElementResolverInterface $elementResolver )
$parserResult ApiGen\Contracts\Parser\ParserStorageInterface
$configuration ApiGen\Contracts\Configuration\ConfigurationInterface
$groupSorter ApiGen\Contracts\Parser\Elements\GroupSorterInterface
$elementResolver ApiGen\Contracts\Generator\Resolvers\ElementResolverInterface
    public function __construct(ParserStorageInterface $parserResult, ConfigurationInterface $configuration, GroupSorterInterface $groupSorter, ElementResolverInterface $elementResolver)
    {
        $this->parserStorage = $parserResult;
        $this->configuration = $configuration;
        $this->groupSorter = $groupSorter;
        $this->elementResolver = $elementResolver;
    }