%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/phpro/grumphp/src/Configuration/ |
Upload File : |
<?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;
}
}