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/162' into develop
Browse files Browse the repository at this point in the history
Forward port #162
  • Loading branch information
weierophinney committed Jan 8, 2019
2 parents 80500df + fa57e93 commit 33d3ad4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -44,6 +44,8 @@ All notable changes to this project will be documented in this file, in reverse

### Fixed

- [#162](https://github.com/zendframework/zend-http/pull/162) fixes a typo in an exception message raised within `Cookies::fromString()`.

- [#121](https://github.com/zendframework/zend-http/pull/121) adds detection for non-numeric connection timeout values as well as
integer casting to ensure the timeout is set properly in both the Curl and
Socket adapters.
Expand Down
2 changes: 1 addition & 1 deletion src/Cookies.php
Expand Up @@ -78,7 +78,7 @@ public static function fromString($string)
{
throw new Exception\RuntimeException(
__CLASS__ . '::' . __FUNCTION__ . ' should not be used as a factory, use '
. __NAMESPACE__ . '\Headers::fromtString() instead.'
. __NAMESPACE__ . '\Headers::fromString() instead.'
);
}

Expand Down

0 comments on commit 33d3ad4

Please sign in to comment.