| 1 | <?php namespace Algorit\Synchronizer\Request\Methods; |
||
| 5 | class Httpful implements MethodInterface { |
||
| 6 | |||
| 7 | public function head($url, $headers = array(), $options = array()) |
||
| 11 | |||
| 12 | public function get($url, $headers = array(), $options = array()) |
||
| 16 | |||
| 17 | public function post($url, $headers = array(), $data = array(), $options = array()) |
||
| 21 | |||
| 22 | public function put($url, $headers = array(), $data = array(), $options = array()) |
||
| 26 | |||
| 27 | public function delete($url, $headers = array(), $options = array()) |
||
| 31 | |||
| 32 | public function patch($url, $headers = array(), $options = array()) |
||
| 36 | |||
| 37 | } |