gitWorkingDir = $gitWorkingDir; $this->gitRepositoryDir = $gitRepositoryDir; $this->workingDir = $workingDir; $this->projectDir = $projectDir; $this->binDir = $binDir; $this->composerFile = $composerFile; $this->configFile = $configFile; } public function getGitWorkingDir(): string { return $this->gitWorkingDir; } public function getGitRepositoryDir(): string { return $this->gitRepositoryDir; } public function getWorkingDir(): string { return $this->workingDir; } public function getProjectDir(): string { return $this->projectDir; } public function getBinDir(): string { return $this->binDir; } public function getComposerFile(): ComposerFile { return $this->composerFile; } public function getConfigFile(): string { return $this->configFile; } }