| Total Complexity | 1 | 
| Total Lines | 15 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 10 | class OutputSentException extends LogicException  | 
            ||
| 11 | { | 
            ||
| 12 | /**  | 
            ||
| 13 | * Exception thrown when output has already been sent when attempting to emit an HTTP header.  | 
            ||
| 14 | *  | 
            ||
| 15 | * @param int $code The Exception code.  | 
            ||
| 16 | * @param \Throwable $previous The previous throwable used for the exception chaining.  | 
            ||
| 17 | */  | 
            ||
| 18 | public function __construct(int $code = 0, Throwable $previous = null)  | 
            ||
| 27 |