public function RequestTest::getContentCantBeCalledTwiceWithResourcesProvider

File

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

Class

RequestTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function getContentCantBeCalledTwiceWithResourcesProvider() {
  return array(
    'Resource then fetch' => array(
      true,
      false,
    ),
    'Resource then resource' => array(
      true,
      true,
    ),
    'Fetch then resource' => array(
      false,
      true,
    ),
  );
}