| Total Complexity | 3 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 16 | class LaravelClientRequest extends Source | ||
| 17 | { | ||
| 18 | /** | ||
| 19 | * Determine whether this class can handle the source. | ||
| 20 | */ | ||
| 21 | 7 | public function matches(): bool | |
| 24 | } | ||
| 25 | |||
| 26 | /** | ||
| 27 | * Retrieve the HTTP request. | ||
| 28 | */ | ||
| 29 | 1 | public function request(): RequestInterface | |
| 32 | } | ||
| 33 | |||
| 34 | /** | ||
| 35 | * Retrieve the HTTP response. | ||
| 36 | * | ||
| 37 | * @return ResponseInterface | ||
| 38 | */ | ||
| 39 | 1 | public function response(): ResponseInterface | |
| 44 |