| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | final class PhoneFromAttributePass implements CompilerPassInterface |
||
| 27 | { |
||
| 28 | /** @var string */ |
||
| 29 | private $attributeName; |
||
| 30 | |||
| 31 | public function __construct(string $attributeName) |
||
| 32 | { |
||
| 33 | $this->attributeName = $attributeName; |
||
| 34 | } |
||
| 35 | |||
| 36 | public function processMandate(XmlMandate $xmlMandate): XmlMandate |
||
| 43 | } |
||
| 44 | } |
||
| 45 |