You are here

class MockDumper 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

Hierarchy

  • class \Symfony\Component\HttpKernel\Tests\EventListener\MockDumper implements \Symfony\Component\VarDumper\Dumper\DataDumperInterface

Expanded class hierarchy of MockDumper

File

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

Namespace

Symfony\Component\HttpKernel\Tests\EventListener
View source
class MockDumper implements DataDumperInterface {
  public function dump(Data $data) {
    $rawData = $data
      ->getRawData();
    echo '+' . $rawData[0];
  }

}

Members