ZF2-107: Zend\OAuth\Http::startRequestCycle uses non-existent Zend\Http\Response::getStatus
Description
Zend/OAuth/Http.php line 178 reads: $status = $response->getStatus(); Should read? $status = $response->getStatusCode();
Zend/OAuth/Http.php line 178 reads: $status = $response->getStatus(); Should read? $status = $response->getStatusCode();
Comments
Posted by Aleksandr Gornostal (sanya-g) on 2011-12-19T22:04:42.000+0000
Issue fixed with patch at https://github.com/zendframework/zf2/pull/669
Posted by Evan Coury (evan.pro) on 2011-12-21T22:04:13.000+0000
Fixed with PR 669: https://github.com/zendframework/zf2/pull/669