| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 59 | protected function prepareProcessorSet(string $object) |
||
| 60 | { |
||
| 61 | $reflectObject = new ReflectionClass($object); |
||
| 62 | $this->processor = []; |
||
| 63 | foreach ($reflectObject->getProperties(ReflectionProperty::IS_PUBLIC | ReflectionProperty::IS_PROTECTED | ReflectionProperty::IS_PRIVATE) as $property) { |
||
| 64 | $name = $this->inputName($property->getName()); |
||
| 65 | $this->processor[$name] = $this->getProcessorType($property); |
||
| 66 | } |
||
| 69 |