Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public static function pathNotWriteable($path) |
||
36 | { |
||
37 | return new static("Cannot write to compiled template path '$path'"); |
||
1 ignored issue
–
show
|
|||
38 | } |
||
39 | |||
41 |
It is generally a best practice as it is often more readable to use concatenation instead of interpolation for variables inside strings.