Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix CS.
  • Loading branch information
Mark Scherer committed Sep 21, 2015
1 parent 9bc66af commit 2d1a77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Network/Response.php
Expand Up @@ -881,7 +881,7 @@ public function sharable($public = null, $time = null)
if (!$public && !$private && !$noCache) {
return null;
}
$sharable = $public || ! ($private || $noCache);
$sharable = $public || !($private || $noCache);
return $sharable;
}
if ($public) {
Expand Down

0 comments on commit 2d1a77a

Please sign in to comment.