| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 34 | 1 | public function __construct(string $message = 'null', string $component_method = 'unknown') |
|
| 35 | { |
||
| 36 | 1 | $this->message = sprintf( |
|
| 37 | 1 | "Called invalid method (%s) for %s!\nFile: %s on line: %s", |
|
| 38 | $message, |
||
| 39 | $component_method, |
||
| 40 | 1 | $this->getFile(), |
|
| 41 | 1 | $this->getLine() |
|
| 42 | ); |
||
| 43 | 1 | } |
|
| 44 | } |
||
| 45 |