Skip to content

Commit

Permalink
Attempt to fix the Failing TRAVIS build complaining about $psrRequest…
Browse files Browse the repository at this point in the history
… not defined.
  • Loading branch information
iliepandia committed Apr 22, 2018
1 parent 61c4e1d commit bbc6a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/IntegrationTestCase.php
Expand Up @@ -483,8 +483,8 @@ public function options($url)
protected function _sendRequest($url, $method, $data = [])
{
$dispatcher = $this->_makeDispatcher();
$psrRequest = null;
try {
$psrRequest = null;
$request = $this->_buildRequest($url, $method, $data);
$psrRequest = $this->_createRequest($request);
if ($dispatcher instanceof LegacyRequestDispatcher) {
Expand Down

0 comments on commit bbc6a54

Please sign in to comment.