<?php public function testArrayConvertsToPHPValue(): void
{
self::assertIsArray($this->type->convertToPHPValue(serialize([]), $this->platform));
}
public function testConversionFailure(): void
<?php public function testObjectConvertsToPHPValue(): void
{
self::assertIsObject($this->type->convertToPHPValue(serialize(new stdClass()), $this->platform));
}
public function testConversionFailure(): void