CurlService.php 289 B

1234567891011121314151617
  1. <?php namespace Hugh\Curl;
  2. class CurlService {
  3. /**
  4. * @param $url string The URL to which the request is to be sent
  5. * @return Builder
  6. */
  7. public function to($url)
  8. {
  9. $builder = new Builder();
  10. return $builder->to($url);
  11. }
  12. }