Skip to content

Commit 415130c

Browse files
committed
php-cs-fixer
1 parent d2d8d96 commit 415130c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/PhpImap/IncomingMail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function __get(string $name): string
6464
\trigger_error("Undefined property: IncomingMail::$name");
6565
}
6666
if (!isset($this->$name)) {
67-
$this->$name = '';
67+
$this->$name = '';
6868
}
6969
foreach ($this->dataInfo[$type] as $data) {
7070
$this->$name .= \trim($data->fetch());

tests/unit/LiveMailboxIssue514Test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,13 @@ public function testEmbed(
206206
if ('foo.png' === $attachment->contentId) {
207207
$replaced = \str_replace(
208208
'foo.png',
209-
'/' . basename($attachment->filePath),
209+
'/'.\basename($attachment->filePath),
210210
$replaced
211211
);
212212
} elseif ('foo.webp' === $attachment->contentId) {
213213
$replaced = \str_replace(
214214
'foo.webp',
215-
'/' . basename($attachment->filePath),
215+
'/'.\basename($attachment->filePath),
216216
$replaced
217217
);
218218
}

0 commit comments

Comments
 (0)