App\Services\Deployment\DeployerRecipeFileBuilder::put PHP Method

put() public method

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