| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait Attributes |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @see https://stackoverflow.com/q/413071/2732184 |
||
| 13 | 24 | * @see https://www.regextester.com/97707 |
|
| 14 | */ |
||
| 15 | 24 | public function hydrate(string $text, string $pattern = '/[^{{\}\}]+(?=}})/'): string |
|
| 31 | 26 | } |
|
| 32 | |||
| 33 | 26 | public function readAttr(string $name, $default = null) |
|
| 44 |