| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class SoapDeserializationVisitorFactory implements DeserializationVisitorFactory |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var bool |
||
| 18 | */ |
||
| 19 | private $disableExternalEntities = true; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return DeserializationVisitorInterface |
||
| 23 | */ |
||
| 24 | 11 | public function getVisitor(): DeserializationVisitorInterface |
|
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param bool $enable |
||
| 31 | * |
||
| 32 | * @return SoapDeserializationVisitorFactory |
||
| 33 | */ |
||
| 34 | 1 | public function enableExternalEntities(bool $enable = true): self |
|
| 40 |