Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function load(\Transphporm\Config $config) { |
||
12 | $config->registerPseudo('data', new \Transphporm\Pseudo\Attribute()); |
||
13 | $config->registerPseudo('iteration', new \Transphporm\Pseudo\Attribute()); |
||
14 | $config->registerPseudo('root', new \Transphporm\Pseudo\Attribute()); |
||
15 | $config->registerPseudo('nth-child', new \Transphporm\Pseudo\Nth()); |
||
16 | $config->registerPseudo('not', new \Transphporm\Pseudo\Not($config->getCssToXpath(), $config)); |
||
17 | } |
||
18 | } |
||
19 |