Files
mongo-php-driver/tests/bson/bson-enum_error-004.phpt
Jeremy Mikola 594cad9a30 PHPC-2083: Revise BSON handling of enum classes
Revert previous enum instantiation behavior and PersistableEnum trait from de5f1e5a93

Backed enums will be encoded as their case value. Non-backed cannot be encoded and no enums can be encoded at the root level.

Prohibit enums from implementing Persistable and Unserializable.
2022-11-10 20:21:36 +08:00

23 lines
514 B
PHP

--TEST--
Backed enum cannot implement Persistable
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_php_version('<', '8.1.0'); ?>
--FILE--
<?php
enum MyBackedEnum: int implements MongoDB\BSON\Persistable
{
case A = 1;
public function bsonSerialize(): array {}
public function bsonUnserialize(array $data): void {}
}
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
Fatal error: Enum class MyBackedEnum cannot implement interface MongoDB\BSON\Persistable in %s on line %d