App\Services\Deployment\DeployerServerListFileBuilder::__construct PHP Method

__construct() public method

public __construct ( App\Services\Filesystem\FilesystemInterface $fs, DeployerFile $deployerFile, Parser $parser, Symfony\Component\Yaml\Dumper $dumper )
$fs App\Services\Filesystem\FilesystemInterface
$deployerFile DeployerFile
$parser Symfony\Component\Yaml\Parser
$dumper Symfony\Component\Yaml\Dumper
    public function __construct(FilesystemInterface $fs, DeployerFile $deployerFile, Parser $parser, Dumper $dumper)
    {
        $this->fs = $fs;
        $this->deployerFile = $deployerFile;
        $this->yamlParser = $parser;
        $this->yamlDumper = $dumper;
    }