File tree 2 files changed +18
-12
lines changed
2 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -230,6 +230,9 @@ public function disable(bool $withEvent = true): Theme
230
230
231
231
/**
232
232
* Enable the current theme.
233
+ *
234
+ * @param null|mixed $defaultViewPaths
235
+ * @param null|mixed $defaultMailViewPaths
233
236
*/
234
237
public function enable (bool $ withEvent = true , $ defaultViewPaths = null , $ defaultMailViewPaths = null ): Theme
235
238
{
@@ -364,6 +367,9 @@ protected function createPublicAssetsStructure()
364
367
365
368
/**
366
369
* Register theme's views in ViewFinder.
370
+ *
371
+ * @param mixed $defaultViewPaths
372
+ * @param mixed $defaultMailViewPaths
367
373
*/
368
374
protected function registerViews ($ defaultViewPaths , $ defaultMailViewPaths )
369
375
{
Original file line number Diff line number Diff line change @@ -32,32 +32,32 @@ class ThemesManager
32
32
protected $ lang ;
33
33
34
34
/**
35
- * Scanned themes .
35
+ * Laravel default view paths .
36
36
*
37
- * @var \Illuminate\Support\Collection
37
+ * @var [type]
38
38
*/
39
- private $ themes ;
39
+ protected $ defaultViewPaths ;
40
40
41
41
/**
42
- * View finder .
42
+ * Laravel default Mail view paths .
43
43
*
44
- * @var \Illuminate\View\Factory
44
+ * @var [type]
45
45
*/
46
- private $ view ;
46
+ protected $ defaultMailViewPaths ;
47
47
48
48
/**
49
- * Laravel default view paths
49
+ * Scanned themes.
50
50
*
51
- * @var [type]
51
+ * @var \Illuminate\Support\Collection
52
52
*/
53
- protected $ defaultViewPaths ;
53
+ private $ themes ;
54
54
55
55
/**
56
- * Laravel default Mail view paths
56
+ * View finder.
57
57
*
58
- * @var [type]
58
+ * @var \Illuminate\View\Factory
59
59
*/
60
- protected $ defaultMailViewPaths ;
60
+ private $ view ;
61
61
62
62
/**
63
63
* The constructor.
You can’t perform that action at this time.
0 commit comments