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