| Total Complexity | 6 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class LeftAndMain_HTTPResponse extends HTTPResponse |
||
| 11 | { |
||
| 12 | |||
| 13 | protected $isFinished = false; |
||
| 14 | |||
| 15 | public function isFinished() |
||
| 16 | { |
||
| 17 | return (parent::isFinished() || $this->isFinished); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function setIsFinished($bool) |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function cloneFrom(HTTPResponse $response): LeftAndMain_HTTPResponse |
||
| 41 |