| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | 1 | public function __construct(VersionInterface $one, VersionInterface $two, int $code = 0, \Throwable $previous = null) |
|
| 24 | { |
||
| 25 | 1 | $first = \get_class($one); |
|
| 26 | 1 | $second = \get_class($two); |
|
| 27 | 1 | parent::__construct("Version class are not equals. First is: {$first}, Second: {$second}.", $code, $previous); |
|
| 28 | 1 | } |
|
| 30 |