Skip to content

Commit 01e370a

Browse files
(standards): fix coding standards issue, use single ' quotes for strings.
1 parent 050c2b1 commit 01e370a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FcmMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function condition(?string $condition): self
8181
public function data(?array $data): self
8282
{
8383
if (! empty(array_filter($data, fn($value) => ! is_string($value)))) {
84-
throw new \InvalidArgumentException("Data values must be strings.");
84+
throw new \InvalidArgumentException('Data values must be strings.');
8585
}
8686

8787
$this->data = $data;

0 commit comments

Comments
 (0)