Neos\Flow\Package\Package::__construct PHP Метод

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

Constructor
public __construct ( string $packageKey, string $composerName, string $packagePath, array $autoloadConfiguration = [] )
$packageKey string Key of this package
$composerName string
$packagePath string Absolute path to the location of the package's composer manifest
$autoloadConfiguration array
    public function __construct($packageKey, $composerName, $packagePath, array $autoloadConfiguration = [])
    {
        $this->autoloadConfiguration = $autoloadConfiguration;
        $this->packagePath = Files::getNormalizedPath($packagePath);
        $this->packageKey = $packageKey;
        $this->composerName = $composerName;
    }