1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Curler\Event; |
4: | |
5: | use CurlHandle; |
6: | |
7: | /** |
8: | * @api |
9: | */ |
10: | interface CurlEventInterface extends CurlerEventInterface |
11: | { |
12: | /** |
13: | * Get the cURL handle associated with the event |
14: | * |
15: | * @return CurlHandle|resource |
16: | */ |
17: | public function getCurlHandle(); |
18: | } |
19: |