You are here

public function MockDumper::dump in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/EventListener/DumpListenerTest.php \Symfony\Component\HttpKernel\Tests\EventListener\MockDumper::dump()

File

vendor/symfony/http-kernel/Tests/EventListener/DumpListenerTest.php, line 76

Class

MockDumper

Namespace

Symfony\Component\HttpKernel\Tests\EventListener

Code

public function dump(Data $data) {
  $rawData = $data
    ->getRawData();
  echo '+' . $rawData[0];
}