php-src/Zend/tests/allow_dynamic_properties_on_trait.phpt
Nikita Popov 902d64390e Deprecate implicit dynamic properties
Writing to a proprety that hasn't been declared is deprecated,
unless the class uses the #[AllowDynamicProperties] attribute or
defines __get()/__set().

RFC: https://wiki.php.net/rfc/deprecate_dynamic_properties
2021-11-26 14:10:11 +01:00

11 lines
212 B
PHP

--TEST--
#[AllowDynamicProperties] cannot be applied to trait
--FILE--
<?php
#[AllowDynamicProperties]
trait Test {}
?>
--EXPECTF--
Fatal error: Cannot apply #[AllowDynamicProperties] to trait in %s on line %d