mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
37 lines
702 B
PHP
37 lines
702 B
PHP
--TEST--
|
|
Validation of attribute repetition (not allowed; userland attribute)
|
|
--FILE--
|
|
<?php
|
|
|
|
#[Attribute]
|
|
class MyAttribute {}
|
|
|
|
#[MyAttribute]
|
|
#[MyAttribute]
|
|
const MY_CONST = true;
|
|
|
|
$attributes = new ReflectionConstant('MY_CONST')->getAttributes();
|
|
var_dump($attributes);
|
|
$attributes[0]->newInstance();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
array(2) {
|
|
[0]=>
|
|
object(ReflectionAttribute)#%d (1) {
|
|
["name"]=>
|
|
string(11) "MyAttribute"
|
|
}
|
|
[1]=>
|
|
object(ReflectionAttribute)#%d (1) {
|
|
["name"]=>
|
|
string(11) "MyAttribute"
|
|
}
|
|
}
|
|
|
|
Fatal error: Uncaught Error: Attribute "MyAttribute" must not be repeated in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): ReflectionAttribute->newInstance()
|
|
#1 {main}
|
|
thrown in %s on line %d
|