1: <?php
2: namespace Peridot\WebDriverManager\Binary\Request;
3:
4: use Peridot\WebDriverManager\Event\EventEmitterInterface;
5:
6: /**
7: * BinaryRequestInterface describes how to fetch a remote binary.
8: *
9: * @package Peridot\WebDriverManager\Binary\Request
10: */
11: interface BinaryRequestInterface extends EventEmitterInterface
12: {
13: /**
14: * Request the binary at the specified url, and return
15: * the contents.
16: *
17: * @param string $url
18: * @return string
19: */
20: public function request($url);
21: }
22: