| 1 | <?php |
||
| 11 | class Factory |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Will return a fully built Request object. |
||
| 15 | * |
||
| 16 | * @param string $token |
||
| 17 | * @param array $httpDefaults (Optional) |
||
| 18 | * @param LoggerInterface $logger (Optional) |
||
| 19 | * @param string $format (Optional log format) |
||
| 20 | * |
||
| 21 | * @return Request |
||
| 22 | */ |
||
| 23 | 1 | public static function createRequest(string $token, |
|
| 42 | } |
||
| 43 |