@@ -15,8 +15,6 @@ |
||
15 | 15 | use samsonframework\container\definition\exception\MethodDefinitionNotFoundException; |
16 | 16 | use samsonframework\container\definition\exception\ParameterDefinitionAlreadyExistsException; |
17 | 17 | use samsonframework\container\definition\exception\PropertyDefinitionNotFoundException; |
18 | -use samsonframework\container\definition\MethodDefinition; |
|
19 | -use samsonframework\container\definition\PropertyDefinition; |
|
20 | 18 | use samsonframework\container\definition\reference\ServiceReference; |
21 | 19 | |
22 | 20 | /** |
@@ -6,9 +6,9 @@ |
||
6 | 6 | */ |
7 | 7 | namespace samsonframework\container\definition\analyzer\annotation; |
8 | 8 | |
9 | -use samsonframework\container\definition\analyzer\DefinitionAnalyzer; |
|
10 | -use samsonframework\container\definition\analyzer\MethodAnalyzerInterface; |
|
11 | -use samsonframework\container\definition\ClassDefinition; |
|
9 | +use samsonframework\container\definition\analyzer\DefinitionAnalyzer; |
|
10 | +use samsonframework\container\definition\analyzer\MethodAnalyzerInterface; |
|
11 | +use samsonframework\container\definition\ClassDefinition; |
|
12 | 12 | use samsonframework\container\definition\exception\MethodDefinitionAlreadyExistsException; |
13 | 13 | |
14 | 14 | class AnnotationMethodAnalyzer extends AbstractAnnotationAnalyzer implements MethodAnalyzerInterface |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use samsonframework\container\definition\parameter\ParameterBuilder; |
16 | 16 | use samsonframework\container\definition\parameter\ParameterBuilderInterface; |
17 | 17 | use samsonframework\container\definition\reference\ClassReference; |
18 | -use samsonframework\container\definition\reference\ReferenceDependencyInterface; |
|
19 | 18 | use samsonframework\container\definition\reference\ReferenceInterface; |
20 | 19 | |
21 | 20 | /** |
@@ -6,22 +6,22 @@ |
||
6 | 6 | */ |
7 | 7 | namespace samsonframework\container\definition\builder; |
8 | 8 | |
9 | -use samsonframework\container\definition\ClassDefinition; |
|
10 | -use samsonframework\container\definition\builder\exception\ReferenceNotImplementsException; |
|
11 | -use samsonframework\container\definition\MethodDefinition; |
|
12 | -use samsonframework\container\definition\PropertyDefinition; |
|
13 | -use samsonframework\container\definition\reference\BoolReference; |
|
14 | -use samsonframework\container\definition\reference\ClassReference; |
|
15 | -use samsonframework\container\definition\reference\CollectionReference; |
|
16 | -use samsonframework\container\definition\reference\ConstantReference; |
|
17 | -use samsonframework\container\definition\reference\FloatReference; |
|
18 | -use samsonframework\container\definition\reference\IntegerReference; |
|
19 | -use samsonframework\container\definition\reference\NullReference; |
|
20 | -use samsonframework\container\definition\reference\ParameterReference; |
|
21 | -use samsonframework\container\definition\reference\ReferenceInterface; |
|
22 | -use samsonframework\container\definition\reference\ServiceReference; |
|
23 | -use samsonframework\container\definition\reference\StringReference; |
|
24 | -use samsonframework\generator\ClassGenerator; |
|
9 | +use samsonframework\container\definition\ClassDefinition; |
|
10 | +use samsonframework\container\definition\builder\exception\ReferenceNotImplementsException; |
|
11 | +use samsonframework\container\definition\MethodDefinition; |
|
12 | +use samsonframework\container\definition\PropertyDefinition; |
|
13 | +use samsonframework\container\definition\reference\BoolReference; |
|
14 | +use samsonframework\container\definition\reference\ClassReference; |
|
15 | +use samsonframework\container\definition\reference\CollectionReference; |
|
16 | +use samsonframework\container\definition\reference\ConstantReference; |
|
17 | +use samsonframework\container\definition\reference\FloatReference; |
|
18 | +use samsonframework\container\definition\reference\IntegerReference; |
|
19 | +use samsonframework\container\definition\reference\NullReference; |
|
20 | +use samsonframework\container\definition\reference\ParameterReference; |
|
21 | +use samsonframework\container\definition\reference\ReferenceInterface; |
|
22 | +use samsonframework\container\definition\reference\ServiceReference; |
|
23 | +use samsonframework\container\definition\reference\StringReference; |
|
24 | +use samsonframework\generator\ClassGenerator; |
|
25 | 25 | use samsonframework\generator\MethodGenerator; |
26 | 26 | |
27 | 27 | /** |
@@ -6,27 +6,27 @@ |
||
6 | 6 | */ |
7 | 7 | namespace samsonframework\container\definition\resolver\xml; |
8 | 8 | |
9 | -use samsonframework\container\definition\builder\DefinitionBuilder; |
|
10 | -use samsonframework\container\definition\ClassDefinition; |
|
11 | -use samsonframework\container\definition\exception\ClassDefinitionAlreadyExistsException; |
|
12 | -use samsonframework\container\definition\exception\MethodDefinitionAlreadyExistsException; |
|
13 | -use samsonframework\container\definition\exception\ParameterDefinitionAlreadyExistsException; |
|
14 | -use samsonframework\container\definition\exception\PropertyDefinitionAlreadyExistsException; |
|
15 | -use samsonframework\container\definition\MethodDefinition; |
|
16 | -use samsonframework\container\definition\parameter\exception\ParameterAlreadyExistsException; |
|
17 | -use samsonframework\container\definition\reference\BoolReference; |
|
18 | -use samsonframework\container\definition\reference\ClassReference; |
|
19 | -use samsonframework\container\definition\reference\CollectionItem; |
|
20 | -use samsonframework\container\definition\reference\CollectionReference; |
|
21 | -use samsonframework\container\definition\reference\ConstantReference; |
|
22 | -use samsonframework\container\definition\reference\FloatReference; |
|
23 | -use samsonframework\container\definition\reference\IntegerReference; |
|
24 | -use samsonframework\container\definition\reference\NullReference; |
|
25 | -use samsonframework\container\definition\reference\ParameterReference; |
|
26 | -use samsonframework\container\definition\reference\ReferenceInterface; |
|
27 | -use samsonframework\container\definition\reference\ServiceReference; |
|
28 | -use samsonframework\container\definition\reference\StringReference; |
|
29 | -use samsonframework\container\definition\resolver\exception\FileNotFoundException; |
|
9 | +use samsonframework\container\definition\builder\DefinitionBuilder; |
|
10 | +use samsonframework\container\definition\ClassDefinition; |
|
11 | +use samsonframework\container\definition\exception\ClassDefinitionAlreadyExistsException; |
|
12 | +use samsonframework\container\definition\exception\MethodDefinitionAlreadyExistsException; |
|
13 | +use samsonframework\container\definition\exception\ParameterDefinitionAlreadyExistsException; |
|
14 | +use samsonframework\container\definition\exception\PropertyDefinitionAlreadyExistsException; |
|
15 | +use samsonframework\container\definition\MethodDefinition; |
|
16 | +use samsonframework\container\definition\parameter\exception\ParameterAlreadyExistsException; |
|
17 | +use samsonframework\container\definition\reference\BoolReference; |
|
18 | +use samsonframework\container\definition\reference\ClassReference; |
|
19 | +use samsonframework\container\definition\reference\CollectionItem; |
|
20 | +use samsonframework\container\definition\reference\CollectionReference; |
|
21 | +use samsonframework\container\definition\reference\ConstantReference; |
|
22 | +use samsonframework\container\definition\reference\FloatReference; |
|
23 | +use samsonframework\container\definition\reference\IntegerReference; |
|
24 | +use samsonframework\container\definition\reference\NullReference; |
|
25 | +use samsonframework\container\definition\reference\ParameterReference; |
|
26 | +use samsonframework\container\definition\reference\ReferenceInterface; |
|
27 | +use samsonframework\container\definition\reference\ServiceReference; |
|
28 | +use samsonframework\container\definition\reference\StringReference; |
|
29 | +use samsonframework\container\definition\resolver\exception\FileNotFoundException; |
|
30 | 30 | use samsonframework\container\definition\resolver\exception\ReferenceNotImplementsException; |
31 | 31 | |
32 | 32 | /** |
@@ -15,10 +15,7 @@ |
||
15 | 15 | use samsonframework\container\definition\exception\MethodDefinitionNotFoundException; |
16 | 16 | use samsonframework\container\definition\exception\ParameterDefinitionAlreadyExistsException; |
17 | 17 | use samsonframework\container\definition\exception\PropertyDefinitionNotFoundException; |
18 | -use samsonframework\container\definition\MethodDefinition; |
|
19 | -use samsonframework\container\definition\PropertyDefinition; |
|
20 | 18 | use samsonframework\container\definition\reference\ParameterReference; |
21 | -use samsonframework\container\definition\reference\ServiceReference; |
|
22 | 19 | |
23 | 20 | /** |
24 | 21 | * Injection annotation parameter. |
@@ -10,8 +10,6 @@ |
||
10 | 10 | use samsonframework\container\definition\exception\MethodDefinitionNotFoundException; |
11 | 11 | use samsonframework\container\definition\exception\PropertyDefinitionNotFoundException; |
12 | 12 | use samsonframework\container\definition\reference\ClassReference; |
13 | -use samsonframework\container\definition\reference\ReferenceInterface; |
|
14 | -use samsonframework\container\definition\reference\ServiceReference; |
|
15 | 13 | use samsonframework\container\definition\scope\AbstractScope; |
16 | 14 | use samsonframework\container\definition\exception\MethodDefinitionAlreadyExistsException; |
17 | 15 | use samsonframework\container\definition\exception\PropertyDefinitionAlreadyExistsException; |