Skip to content

Commit

Permalink
fix php cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gummibeer committed Feb 29, 2020
1 parent 03426e5 commit bfa6cd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ public function toUrl(): string
'url' => $this->imageUrl,
]));

return $this->baseUrl . '?' . $query;
return $this->baseUrl.'?'.$query;
}

public function toImg(array $attr = []): string
Expand All @@ -521,7 +521,7 @@ public function toImg(array $attr = []): string
implode(
' ',
array_map(
fn($k, $v) => sprintf('%s="%s"', $k, htmlspecialchars($v)),
fn ($k, $v) => sprintf('%s="%s"', $k, htmlspecialchars($v)),
array_keys($attr),
$attr
)
Expand Down

0 comments on commit bfa6cd0

Please sign in to comment.