|
5 | 5 | */
|
6 | 6 | declare(strict_types=1);
|
7 | 7 |
|
8 |
| -namespace Magento\SemanticVersionCheckr\Analyzer; |
| 8 | +namespace Magento\SemanticVersionChecker\Analyzer; |
9 | 9 |
|
10 |
| -use Magento\SemanticVersionCheckr\Comparator\Signature; |
11 |
| -use Magento\SemanticVersionCheckr\Comparator\Visibility; |
12 |
| -use Magento\SemanticVersionCheckr\Operation\ClassConstructorLastParameterRemoved; |
13 |
| -use Magento\SemanticVersionCheckr\Operation\ClassConstructorObjectParameterAdded; |
14 |
| -use Magento\SemanticVersionCheckr\Operation\ClassConstructorOptionalParameterAdded; |
15 |
| -use Magento\SemanticVersionCheckr\Operation\ClassMethodLastParameterRemoved; |
16 |
| -use Magento\SemanticVersionCheckr\Operation\ClassMethodMoved; |
17 |
| -use Magento\SemanticVersionCheckr\Operation\ClassMethodOptionalParameterAdded; |
18 |
| -use Magento\SemanticVersionCheckr\Operation\ClassMethodParameterTypingChanged; |
19 |
| -use Magento\SemanticVersionCheckr\Operation\ClassMethodReturnTypingChanged; |
20 |
| -use Magento\SemanticVersionCheckr\Operation\ExtendableClassConstructorOptionalParameterAdded; |
21 |
| -use Magento\SemanticVersionCheckr\Operation\Visibility\MethodDecreased as VisibilityMethodDecreased; |
22 |
| -use Magento\SemanticVersionCheckr\Operation\Visibility\MethodIncreased as VisibilityMethodIncreased; |
| 10 | +use Magento\SemanticVersionChecker\Comparator\Signature; |
| 11 | +use Magento\SemanticVersionChecker\Comparator\Visibility; |
| 12 | +use Magento\SemanticVersionChecker\Operation\ClassConstructorLastParameterRemoved; |
| 13 | +use Magento\SemanticVersionChecker\Operation\ClassConstructorObjectParameterAdded; |
| 14 | +use Magento\SemanticVersionChecker\Operation\ClassConstructorOptionalParameterAdded; |
| 15 | +use Magento\SemanticVersionChecker\Operation\ClassMethodLastParameterRemoved; |
| 16 | +use Magento\SemanticVersionChecker\Operation\ClassMethodMoved; |
| 17 | +use Magento\SemanticVersionChecker\Operation\ClassMethodOptionalParameterAdded; |
| 18 | +use Magento\SemanticVersionChecker\Operation\ClassMethodParameterTypingChanged; |
| 19 | +use Magento\SemanticVersionChecker\Operation\ClassMethodReturnTypingChanged; |
| 20 | +use Magento\SemanticVersionChecker\Operation\ExtendableClassConstructorOptionalParameterAdded; |
| 21 | +use Magento\SemanticVersionChecker\Operation\Visibility\MethodDecreased as VisibilityMethodDecreased; |
| 22 | +use Magento\SemanticVersionChecker\Operation\Visibility\MethodIncreased as VisibilityMethodIncreased; |
23 | 23 | use PhpParser\Node\Stmt;
|
24 | 24 | use PhpParser\Node\Stmt\ClassLike;
|
25 | 25 | use PhpParser\Node\Stmt\ClassMethod;
|
|
0 commit comments