Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fracsi committed Dec 15, 2023
1 parent 57bffce commit 0751a91
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/TailwindBinary.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,9 @@ private function getLatestVersion(): string
try {
$response = $this->httpClient->request('GET', 'https://api.github.com/repos/tailwindlabs/tailwindcss/releases/latest');

return $response->toArray()['name'] ?? self::DEFAULT_VERSION
;
return $response->toArray()['name'] ?? self::DEFAULT_VERSION;
} catch (\Throwable) {
return self::DEFAULT_VERSION
;
return self::DEFAULT_VERSION;
}
}

Expand Down

0 comments on commit 0751a91

Please sign in to comment.