1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Curler\Event; |
4: | |
5: | use Salient\Contract\Curler\CurlerInterface; |
6: | |
7: | /** |
8: | * @api |
9: | */ |
10: | interface CurlerEventInterface |
11: | { |
12: | /** |
13: | * Get the Curler instance that dispatched the event |
14: | */ |
15: | public function getCurler(): CurlerInterface; |
16: | } |
17: |