public function RequestTest::testGetContentCantBeCalledTwiceWithResources

@expectedException LogicException @dataProvider getContentCantBeCalledTwiceWithResourcesProvider

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/RequestTest.php, line 700

Class

RequestTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testGetContentCantBeCalledTwiceWithResources($first, $second) {
  $req = new Request();
  $req
    ->getContent($first);
  $req
    ->getContent($second);
}