File tree Expand file tree Collapse file tree 2 files changed +18
-12
lines changed
Expand file tree Collapse file tree 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
230230
231231 /**
232232 * Enable the current theme.
233+ *
234+ * @param null|mixed $defaultViewPaths
235+ * @param null|mixed $defaultMailViewPaths
233236 */
234237 public function enable (bool $ withEvent = true , $ defaultViewPaths = null , $ defaultMailViewPaths = null ): Theme
235238 {
@@ -364,6 +367,9 @@ protected function createPublicAssetsStructure()
364367
365368 /**
366369 * Register theme's views in ViewFinder.
370+ *
371+ * @param mixed $defaultViewPaths
372+ * @param mixed $defaultMailViewPaths
367373 */
368374 protected function registerViews ($ defaultViewPaths , $ defaultMailViewPaths )
369375 {
Original file line number Diff line number Diff line change @@ -32,32 +32,32 @@ class ThemesManager
3232 protected $ lang ;
3333
3434 /**
35- * Scanned themes .
35+ * Laravel default view paths .
3636 *
37- * @var \Illuminate\Support\Collection
37+ * @var [type]
3838 */
39- private $ themes ;
39+ protected $ defaultViewPaths ;
4040
4141 /**
42- * View finder .
42+ * Laravel default Mail view paths .
4343 *
44- * @var \Illuminate\View\Factory
44+ * @var [type]
4545 */
46- private $ view ;
46+ protected $ defaultMailViewPaths ;
4747
4848 /**
49- * Laravel default view paths
49+ * Scanned themes.
5050 *
51- * @var [type]
51+ * @var \Illuminate\Support\Collection
5252 */
53- protected $ defaultViewPaths ;
53+ private $ themes ;
5454
5555 /**
56- * Laravel default Mail view paths
56+ * View finder.
5757 *
58- * @var [type]
58+ * @var \Illuminate\View\Factory
5959 */
60- protected $ defaultMailViewPaths ;
60+ private $ view ;
6161
6262 /**
6363 * The constructor.
You can’t perform that action at this time.
0 commit comments