Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3286'
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jan 3, 2013
2 parents ecd96ec + 6b0b773 commit d7f0623
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Client/Cookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ public function getCookie($uri, $cookie_name, $ret_as = self::COOKIE_OBJECT)
throw new Exception\InvalidArgumentException("Invalid value passed for \$ret_as: {$ret_as}");
break;
}
} else {
return false;
}

return false;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Cookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ public function getCookie($uri, $cookie_name, $ret_as = self::COOKIE_OBJECT)
throw new Exception\InvalidArgumentException("Invalid value passed for \$ret_as: {$ret_as}");
break;
}
} else {
return false;
}

return false;
}

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Header/SetCookie.php
Original file line number Diff line number Diff line change
Expand Up @@ -473,9 +473,9 @@ public function isExpired($now = null)

if (is_int($this->expires) && $this->expires < $now) {
return true;
} else {
return false;
}

return false;
}

/**
Expand Down

0 comments on commit d7f0623

Please sign in to comment.