| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 5 | class Inline |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Php code required to render the ending component html tag |
||
| 9 | * |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | 3 | public static function end() : string |
|
| 13 | { |
||
| 14 | 3 | return '</div><?php echo \Jhoff\BladeVue\Components\Inline::end(); ?>'; |
|
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Php code required to parse the expression and render the starting component html tag |
||
| 19 | * |
||
| 20 | * @param string $expression |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 3 | public static function start(string $expression) : string |
|
| 26 | } |
||
| 27 | } |
||
| 28 |