function YamlPeclTest::testObjectSupportDisabled
Ensures that php object support is disabled.
File
- 
              core/
tests/ Drupal/ Tests/ Component/ Serialization/ YamlPeclTest.php, line 32  
Class
- YamlPeclTest
 - Tests the YamlPecl serialization implementation.
 
Namespace
Drupal\Tests\Component\SerializationCode
public function testObjectSupportDisabled() {
  $object = new \stdClass();
  $object->foo = 'bar';
  $this->assertEquals([
    'O:8:"stdClass":1:{s:3:"foo";s:3:"bar";}',
  ], YamlPecl::decode(YamlPecl::encode([
    $object,
  ])));
  $this->assertEquals(0, ini_get('yaml.decode_php'));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.