Skip to content

Support Symfony 4.3

Compare
Choose a tag to compare
@joaoalves-kununu joaoalves-kununu released this 31 May 10:08
· 43 commits to master since this release
3b80087
  • Removed method getClient from Kununu\TestingBundle\Test\WebTestCase.

Before:

$response = $this->doRequest(
    $this->getClient(),
    RequestBuilder::aGetRequest()->withUri('/app/response')
);

After:

$response = $this->doRequest(
    RequestBuilder::aGetRequest()->withUri('/app/response')
);