CurlService.php 304 B

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