Skip to content

Commit 39491a6

Browse files
Merge pull request #23 from stackkit/analysis-86aEQW
Apply fixes from StyleCI
2 parents 43b3c7d + 8552cd7 commit 39491a6

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)