You are here

public function RequestDataCollectorTest::__call in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/DataCollector/RequestDataCollectorTest.php \Symfony\Component\HttpKernel\Tests\DataCollector\RequestDataCollectorTest::__call()

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

File

vendor/symfony/http-kernel/Tests/DataCollector/RequestDataCollectorTest.php, line 205

Class

RequestDataCollectorTest

Namespace

Symfony\Component\HttpKernel\Tests\DataCollector

Code

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