Skip to content

Commit 7f71b80

Browse files
binarykactions-user
authored andcommitted
Fix styling
1 parent 263b83f commit 7f71b80

File tree

5 files changed

+2
-5
lines changed

5 files changed

+2
-5
lines changed

src/Actions/PersonalizeMailAction.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ public function execute($html, MailTemplateable $template, array $replacers): st
1414
->reduce(fn (string $html, Replacer $replacer) => $replacer->replace($html, $template), $html);
1515
}
1616
}
17-

src/Models/MailTemplate.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,3 @@ public function getContent(): string
6868
return $this->html;
6969
}
7070
}
71-

src/Replacers/Concerns/ReplaceModelAttributes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function replaceModelAttributes(string $text, string $replaceText, Model
2424

2525
$replace = $parts->reduce(function ($value, $part) {
2626
$part = Str::between($part, '::', '::');
27+
2728
return $value->$part
2829
?? $value[$part]
2930
?? '';

src/Support/WithMailTemplate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function render()
7777

7878
private function ensureValidView()
7979
{
80-
if (!$this->markdown) {
80+
if (! $this->markdown) {
8181
$this->markdown($this->getLayout());
8282
}
8383

tests/Fixtures/User.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@
66

77
class User extends Model
88
{
9-
109
protected $guarded = [];
11-
1210
}

0 commit comments

Comments
 (0)