| 1 | <?php |
||
| 6 | final class Extractor |
||
| 7 | { |
||
| 8 | /** @var Extractor\Methods */ |
||
| 9 | private $methods; |
||
| 10 | |||
| 11 | /** @var Extractor\Properties */ |
||
| 12 | private $properties; |
||
| 13 | |||
| 14 | /** @var Extractor\Constants */ |
||
| 15 | private $constants; |
||
| 16 | |||
| 17 | public function __construct(Extractor\Constants $constants, Extractor\Properties $properties, Extractor\Methods $methods) |
||
| 23 | |||
| 24 | public function extract(\ReflectionClass $reflection): Structure |
||
| 34 | |||
| 35 | private function hasCloneMethod(\ReflectionClass $reflection): bool |
||
| 49 | } |