1234567891011121314151617 |
- <?php namespace Hugh\MultiCurl;
- class MultiCurlService {
- /**
- * @param $url string The URL to which the request is to be sent
- * @return Builder
- */
- public function add($url)
- {
- $builder = new Builder();
- return $builder->add($url);
- }
- }
|