App\Services\Deployment\DeployerRecipeFileBuilder::put PHP Méthode

put() public méthode

Put a recipe file.
public put ( ) : DeployerRecipeFileBuilder
Résultat DeployerRecipeFileBuilder $this
    public function put()
    {
        $fullPath = $this->deployerFile->getFullPath();
        $contents = $this->recipe->body;
        $this->fs->put($fullPath, $contents);
        return $this;
    }