@@ -11,8 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace ptlis\SemanticVersion\Comparator; |
13 | 13 | |
14 | -use ptlis\SemanticVersion\Parse\Token; |
|
15 | - |
|
16 | 14 | /** |
17 | 15 | * Factory to build comparator instances from string representation. |
18 | 16 | */ |
@@ -21,10 +21,9 @@ |
||
21 | 21 | use ptlis\SemanticVersion\Parse\VersionParser; |
22 | 22 | use ptlis\SemanticVersion\Parse\VersionRangeParser; |
23 | 23 | use ptlis\SemanticVersion\Parse\VersionTokenizer; |
24 | +use ptlis\SemanticVersion\VersionRange\VersionRangeInterface; |
|
24 | 25 | use ptlis\SemanticVersion\Version\Label\LabelBuilder; |
25 | 26 | use ptlis\SemanticVersion\Version\VersionInterface; |
26 | -use ptlis\SemanticVersion\VersionRange\ComparatorVersion; |
|
27 | -use ptlis\SemanticVersion\VersionRange\VersionRangeInterface; |
|
28 | 27 | |
29 | 28 | /** |
30 | 29 | * Simple class to provide version parsing with good defaults. |