| 1 | <?php |
||
| 7 | class RequestFactory |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | private $secret; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $secret |
||
| 17 | */ |
||
| 18 | public function __construct($secret) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $body |
||
| 25 | * @param string[] $headers |
||
| 26 | * @return Request |
||
| 27 | */ |
||
| 28 | public function createRequest($body, array $headers) |
||
| 40 | |||
| 41 | } |
||
| 42 |