Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/CachePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private function getMaxAge(ResponseInterface $response)
return $maxAge - ((int) $age);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will cast to int automatically, right?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes the cast is implicit here.

}

return $maxAge;
return (int) $maxAge;
}

// check for ttl in the Expires header
Expand Down