| Total Complexity | 3 | 
| Total Lines | 26 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 30 | class ContinueResponse extends Response implements ResponseContract | ||
| 31 | { | ||
| 32 | |||
| 33 | /** | ||
| 34 | * Handle Continue responses. | ||
| 35 | * | ||
| 36 | * @return false|string | ||
| 37 | */ | ||
| 38 | public function parse() | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * Indicate the type of response this | ||
| 49 | * class handles. | ||
| 50 | * | ||
| 51 | * @return string | ||
| 52 | */ | ||
| 53 | public function getType(): string | ||
| 58 |