lithium\data\source\Http::$_methods

protected property

List of methods and their corresponding HTTP method and path.

Source

	protected $_methods = [
		'create' => ['method' => 'post', 'path' => "/{:source}"],
		'read'   => ['method' => 'get', 'path' => "/{:source}"],
		'update' => ['method' => 'put', 'path' => "/{:source}/{:id}"],
		'delete' => ['method' => 'delete', 'path' => "/{:source}/{:id}"]
	];