Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Factory extends \Seboettg\CiteProc\Util\Factory |
||
22 | { |
||
23 | const NAMESPACE_CONSTRAINTS = "Seboettg\\CiteProc\\Constraint\\"; |
||
24 | |||
25 | /** |
||
26 | * @param string $name |
||
27 | * @param string $value |
||
28 | * @param string $match |
||
29 | * @return mixed |
||
30 | * @throws ClassNotFoundException |
||
31 | */ |
||
32 | 63 | public static function createConstraint(string $name, string $value, string $match) |
|
44 |