Overview

Namespaces

  • Peridot
    • WebDriverManager
      • Binary
        • Decompression
        • Request
      • Console
      • Event
      • OS
      • Process
      • Test
  • PHP

Classes

  • StandardBinaryRequest

Interfaces

  • BinaryRequestInterface
  • Overview
  • Namespace
  • Class
  • Tree
 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: 
WebDriver Manager API documentation generated by ApiGen