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