public static function YamlParserProxy::encode in Drupal 9
Same name in this branch
- 9 core/tests/Drupal/Tests/Core/Serialization/YamlTest.php \Drupal\Tests\Core\Serialization\YamlParserProxy::encode()
- 9 core/tests/Drupal/Tests/Component/Serialization/YamlTest.php \Drupal\Tests\Component\Serialization\YamlParserProxy::encode()
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Component/Serialization/YamlTest.php \Drupal\Tests\Component\Serialization\YamlParserProxy::encode()
Encodes data into the serialization format.
Parameters
mixed $data: The data to encode.
Return value
string The encoded data.
Throws
\Drupal\Component\Serialization\Exception\InvalidDataTypeException
Overrides SerializationInterface::encode
File
- core/
tests/ Drupal/ Tests/ Component/ Serialization/ YamlTest.php, line 159
Class
Namespace
Drupal\Tests\Component\SerializationCode
public static function encode($data) {
return static::$mock
->encode($data);
}