Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function extract(\ReflectionClass $reflection): Structure |
||
25 | { |
||
26 | return Structure::create( |
||
27 | $this->constants->getConstants($reflection), |
||
28 | $this->properties->getProperties($reflection), |
||
29 | $this->methods->getMethods($reflection), |
||
30 | $reflection->getConstructor() !== null, |
||
31 | $this->hasCloneMethod($reflection) |
||
32 | ); |
||
33 | } |
||
34 | |||
49 | } |