| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class VersionResolver |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var \Vaimo\ComposerChangelogs\Validators\ConstraintValidator |
||
| 12 | */ |
||
| 13 | private $constraintValidator; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | $this->constraintValidator = new \Vaimo\ComposerChangelogs\Validators\ConstraintValidator(); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function resolveValidVersion($value) |
||
| 29 | } |
||
| 30 | } |
||
| 31 |