public function DumperTest::testObjectSupportDisabledWithExceptionsPassingTrue in Database Sanitize 7
@group legacy @expectedException \Symfony\Component\Yaml\Exception\DumpException
File
- vendor/
symfony/ yaml/ Tests/ DumperTest.php, line 245
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testObjectSupportDisabledWithExceptionsPassingTrue() {
$this->dumper
->dump(array(
'foo' => new A(),
'bar' => 1,
), 0, 0, true);
}