whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
phpro
/
grumphp
/
src
/
Configuration
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/phpro/grumphp/src/Configuration/GuessedPaths.php
<?php declare(strict_types=1); namespace GrumPHP\Configuration; use GrumPHP\Util\ComposerFile; class GuessedPaths { /** * @var string */ private $gitWorkingDir; /** * @var string */ private $gitRepositoryDir; /** * @var string */ private $workingDir; /** * @var string */ private $projectDir; /** * @var ComposerFile */ private $composerFile; /** * @var string */ private $binDir; /** * @var string */ private $configFile; public function __construct( string $gitWorkingDir, string $gitRepositoryDir, string $workingDir, string $projectDir, string $binDir, ComposerFile $composerFile, string $configFile ) { $this->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; } }
Copyright ©2021 || Defacer Indonesia