| Total Complexity | 9 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 11 | class ComplexNumbers  | 
            ||
| 12 | { | 
            ||
| 13 | |||
| 14 | public const IMMUTABLE_COMPLEX = ImmutableComplexNumber::class;  | 
            ||
| 15 | public const MUTABLE_COMPLEX = MutableComplexNumber::class;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @param $type  | 
            ||
| 19 | * @param $value  | 
            ||
| 20 | *  | 
            ||
| 21 | * @return Types\ComplexNumber  | 
            ||
| 22 | * @throws IntegrityConstraint  | 
            ||
| 23 | */  | 
            ||
| 24 | public static function make($type, $value)  | 
            ||
| 53 | }  |