lithium\net\http\Service::delete()

public method

Send DELETE request.

Parameters

  • string $path
  • array $data
  • array $options

Returns

string

Source

	public function delete($path = null, $data = [], array $options = []) {
		$defaults = ['type' => false];
		return $this->send(__FUNCTION__, $path, $data, $options + $defaults);
	}