Skip to content

Commit fe5f517

Browse files
authored
Apply fixes from StyleCI (#15)
1 parent 2c91db0 commit fe5f517

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Url.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,18 @@ public function couldExpire(): bool
5858
}
5959

6060
/**
61-
* Return whether an url has expired
61+
* Return whether an url has expired.
6262
*
63-
* @return boolean
63+
* @return bool
6464
*/
6565
public function hasExpired(): bool
6666
{
67-
if (!$this->couldExpire()) {
67+
if (! $this->couldExpire()) {
6868
return false;
6969
}
7070

7171
$expiresAt = new Carbon($this->expires_at);
7272

73-
return !$expiresAt->isFuture();
73+
return ! $expiresAt->isFuture();
7474
}
7575
}

0 commit comments

Comments
 (0)