Pantheon\Terminus\Models\Site::delete PHP Method

delete() public method

Deletes the site represented by this object
public delete ( ) : Workflow
return Workflow
    public function delete()
    {
        $this->request()->request("sites/{$this->id}", ['method' => 'delete']);
        //TODO: Change this function to use a workflow. The workflow returned always gets 404 on status check.
        //return $this->workflows->create('delete_site');
    }