Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7247f commit ff8e8bfCopy full SHA for ff8e8bf
tests/Geocoder/Tests/TestCase.php
@@ -26,7 +26,7 @@ protected function getMockAdapter($expects = null)
26
->expects($this->any())
27
->method('getBody')
28
->will($this->returnValue(
29
- $this->getMock('Psr\Http\Message\StreamableInterface')
+ $this->getMock('Psr\Http\Message\StreamInterface')
30
));
31
32
$adapter = $this->getMock('Ivory\HttpAdapter\HttpAdapterInterface');
@@ -44,7 +44,7 @@ protected function getMockAdapter($expects = null)
44
*/
45
protected function getMockAdapterReturns($returnValue)
46
{
47
- $body = $this->getMock('Psr\Http\Message\StreamableInterface');
+ $body = $this->getMock('Psr\Http\Message\StreamInterface');
48
$body
49
->expects($this->once())
50
->method('__toString')
0 commit comments