| Conditions | 3 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 3.576 |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | 2 | public function __construct($variant, Config $config = null) |
|
| 13 | { |
||
| 14 | 2 | if (!$variant instanceof VariantExt && !$variant instanceof VARIANTFake) { |
|
| 15 | throw new VariantWrapperException('Must be an instance of VARIANT or VARIANTFake. Given: ' |
||
| 16 | . get_class($variant)); |
||
| 17 | } |
||
| 18 | |||
| 19 | 2 | parent::__construct($variant, $config); |
|
| 20 | 2 | } |
|
| 22 |