Skip to content

Commit 8552cd7

Browse files
marickvantuilStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 43b3c7d commit 8552cd7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/EmailComposer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public function attach($file, $options = [])
220220
{
221221
$validFileName = (is_string($file) && strlen($file) > 0);
222222

223-
if (!$validFileName) {
223+
if (! $validFileName) {
224224
return $this;
225225
}
226226

@@ -243,7 +243,7 @@ public function attachData($data, $name, array $options = [])
243243
{
244244
$validData = (is_string($data) && strlen($data) > 0);
245245

246-
if (!$validData) {
246+
if (! $validData) {
247247
return $this;
248248
}
249249

0 commit comments

Comments
 (0)