Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | trait TestsBladeComponents |
||
12 | { |
||
13 | /** |
||
14 | * Sets the view paths. |
||
15 | * |
||
16 | * @param array|string $path |
||
17 | * @return void |
||
18 | */ |
||
19 | protected function setViewPath($path) |
||
26 | }); |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Returns the evaluated view contents for the given view and data. |
||
31 | * |
||
32 | * @param string $view |
||
33 | * @param array $data |
||
34 | * @return string |
||
35 | */ |
||
36 | protected function renderView(string $view, array $data = []): string |
||
45 |