MultiCurlService.php 285 B

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