public function RequestDataCollectorTest::__call

Magic method to allow non existing methods to be called and delegated.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/DataCollector/RequestDataCollectorTest.php, line 195

Class

RequestDataCollectorTest

Namespace

Symfony\Component\HttpKernel\Tests\DataCollector

Code

public function __call($method, $args) {
  throw new \LogicException('Unexpected method call');
}