Lines Matching refs:class
7 …class Annotation { public $values; public function construct() { $this->values = func_get_args(); …
8 class Entity extends Annotation {}
9 class Id extends Annotation {}
10 class Column extends Annotation { const UNIQUE = 'unique'; const T_INTEGER = 'integer'; }
11 class GeneratedValue extends Annotation {}
12 class JoinTable extends Annotation {}
13 class ManyToMany extends Annotation {}
14 class JoinColumn extends Annotation { const UNIQUE = 'unique'; }
15 class InverseJoinColumn extends Annotation {}
19 …class Annotation { public $values; public function construct() { $this->values = func_get_args(); …
20 class Email extends Annotation {}
21 class Range extends Annotation {}
30 class User
66 #[ORM\ManyToMany(Phonenumber::class)]
73 $class = new ReflectionClass(User::class);
74 $attributes = $class->getAttributes();
80 foreach ($class->getProperties() as $property) {