Skip to content

Commit 054f78e

Browse files
gaetan-hexadogactions-user
authored andcommitted
Automatically applied php-cs-fixer changes
1 parent 3edc2c3 commit 054f78e

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

src/Theme.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
{

src/ThemesManager.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)