Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
3 / 3
CRAP
100.00% covered (success)
100.00%
1 / 1
WrappedErrorTrace
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
3 / 3
6
100.00% covered (success)
100.00%
1 / 1
 __construct
n/a
0 / 0
n/a
0 / 0
1
 jsonSerialize
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 __get
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getFileContents
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
3
1<?php
2namespace Apie\HtmlBuilders\ErrorHandler;
3
4use Apie\Core\Attributes\Optional;
5use Apie\Core\ValueObjects\CompositeValueObject;
6use Apie\Core\ValueObjects\Interfaces\ValueObjectInterface;
7use JsonSerializable;
8
9final class WrappedErrorTrace implements ValueObjectInterface, JsonSerializable
10{
11    use CompositeValueObject;
12
13    #[Optional]
14    private string $file;
15
16    #[Optional]
17    private int $line;
18
19    #[Optional]
20    private string $function;
21
22    #[Optional]
23    private string $class;
24
25    #[Optional]
26    private string $type;
27
28    /**
29     * @codeCoverageIgnore
30     */
31    private function __construct()
32    {
33    }
34
35    /**
36     * @return array<string, int|string|array<int,mixed>>
37     */
38    public function jsonSerialize(): array
39    {
40        return $this->toNative();
41    }
42
43    public function __get(string $key): mixed
44    {
45        return $this->$key;
46    }
47
48    public function getFileContents(): ?string
49    {
50        if (isset($this->file) && is_readable($this->file)) {
51            return file_get_contents($this->file);
52        }
53
54        return null;
55    }
56}