App\Services\Deployment\DeployerRecipeFileBuilder::put PHP 메소드

put() 공개 메소드

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