Total Complexity | 6 |
Total Lines | 61 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ConvertHelper_ThrowableInfo_MessageRenderer |
||
8 | { |
||
9 | /** |
||
10 | * @var ConvertHelper_ThrowableInfo |
||
11 | */ |
||
12 | private $info; |
||
13 | |||
14 | /** |
||
15 | * @var bool |
||
16 | */ |
||
17 | private $developerInfo; |
||
18 | |||
19 | public function __construct(ConvertHelper_ThrowableInfo $info, bool $developerInfo) |
||
20 | { |
||
21 | $this->info = $info; |
||
22 | $this->developerInfo = $developerInfo; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | * @throws ConvertHelper_Exception |
||
28 | */ |
||
29 | public function render() : string |
||
68 | } |
||
69 | } |
||
70 |