Skip to content

Commit 050c2b1

Browse files
(standards): fix coding standards issue, with no trailing space after ! not operator.
1 parent 5f38d40 commit 050c2b1

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
@@ -80,7 +80,7 @@ public function condition(?string $condition): self
8080
*/
8181
public function data(?array $data): self
8282
{
83-
if (!empty(array_filter($data, fn($value) => !is_string($value)))) {
83+
if (! empty(array_filter($data, fn($value) => ! is_string($value)))) {
8484
throw new \InvalidArgumentException("Data values must be strings.");
8585
}
8686

0 commit comments

Comments
 (0)