HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/work.naniguide.com/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;
    }
}