| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct( |
||
| 23 | string $file, |
||
| 24 | int $lineNumber, |
||
| 25 | string $method = null, |
||
| 26 | string $class = null, |
||
| 27 | bool $isApplicationFrame = false |
||
| 28 | ) { |
||
| 29 | $this->file = $file; |
||
| 30 | |||
| 31 | $this->lineNumber = $lineNumber; |
||
| 32 | |||
| 33 | $this->method = $method; |
||
| 34 | |||
| 35 | $this->class = $class; |
||
| 36 | |||
| 37 | $this->isApplicationFrame = $isApplicationFrame; |
||
| 38 | } |
||
| 39 | |||
| 72 |