Skip to content

Commit 4c300c3

Browse files
Merge branch 'develop' of https://github.com/hexadog/laravel-themes-manager into develop
2 parents d4017d8 + e2d9c27 commit 4c300c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Theme.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Theme
4949
/**
5050
* The Parent theme.
5151
*/
52-
protected string|Theme|null $parent = null;
52+
protected string | Theme | null $parent = null;
5353

5454
/**
5555
* The theme statud (enabled or not).
@@ -219,7 +219,7 @@ public function hasParent(): bool
219219
/**
220220
* Set parent Theme.
221221
*/
222-
public function setParent(string|Theme|null $theme): self
222+
public function setParent(string | Theme | null $theme): self
223223
{
224224
$this->parent = empty($theme) ? null : $theme;
225225

@@ -229,7 +229,7 @@ public function setParent(string|Theme|null $theme): self
229229
/**
230230
* Get parent Theme.
231231
*/
232-
public function getParent(): Theme|null
232+
public function getParent(): Theme | null
233233
{
234234
if (is_string($this->parent)) {
235235
$this->parent = ThemesManager::findByName($this->parent);

0 commit comments

Comments
 (0)