Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | private function validateClass($class) |
||
42 | { |
||
43 | $reflectionClass = new \ReflectionClass($class); |
||
44 | $this->reader->getClassAnnotations($reflectionClass); |
||
45 | |||
46 | foreach ($reflectionClass->getMethods() as $reflectionMethod) { |
||
47 | $this->reader->getMethodAnnotations($reflectionMethod); |
||
48 | } |
||
49 | |||
50 | foreach ($reflectionClass->getProperties() as $reflectionProperty) { |
||
51 | $this->reader->getPropertyAnnotations($reflectionProperty); |
||
52 | } |
||
53 | } |
||
54 | } |
||
55 |