@@ -74,7 +74,7 @@ |
||
74 | 74 | * Builds the ReflectionProperty from the provided parameters, |
75 | 75 | * linking to a parent ReflectionComposite |
76 | 76 | * |
77 | - * @param ReflectionCompostite $parent The reflector for the class |
|
77 | + * @param ReflectionComposite $parent The reflector for the class |
|
78 | 78 | * this property belongs to |
79 | 79 | * @param mixed $default This property's default value |
80 | 80 | * @return ReflectionProperty |
@@ -16,13 +16,7 @@ |
||
16 | 16 | |
17 | 17 | use Spaark\CompositeUtils\Model\Reflection\ReflectionComposite; |
18 | 18 | use Spaark\CompositeUtils\Model\Reflection\ReflectionProperty; |
19 | -use Spaark\CompositeUtils\Model\Reflection\ReflectionParameter; |
|
20 | -use Spaark\CompositeUtils\Model\Reflection\Type\BooleanType; |
|
21 | -use Spaark\CompositeUtils\Model\Reflection\Type\CollectionType; |
|
22 | -use Spaark\CompositeUtils\Model\Reflection\Type\IntegerType; |
|
23 | 19 | use Spaark\CompositeUtils\Model\Reflection\Type\MixedType; |
24 | -use Spaark\CompositeUtils\Model\Reflection\Type\ObjectType; |
|
25 | -use Spaark\CompositeUtils\Model\Reflection\Type\StringType; |
|
26 | 20 | use Spaark\CompositeUtils\Service\RawPropertyAccessor; |
27 | 21 | use \ReflectionProperty as PHPNativeReflectionProperty; |
28 | 22 |
@@ -130,7 +130,7 @@ |
||
130 | 130 | * |
131 | 131 | * @param string $name |
132 | 132 | * @param bool $checkFile |
133 | - * @param string $singular |
|
133 | + * @param string $signular |
|
134 | 134 | */ |
135 | 135 | protected function addItems |
136 | 136 | ( |
@@ -14,7 +14,6 @@ |
||
14 | 14 | |
15 | 15 | namespace Spaark\CompositeUtils\Factory\Reflection; |
16 | 16 | |
17 | -use Spaark\CompositeUtils\Factory\BaseFactory; |
|
18 | 17 | use Spaark\CompositeUtils\Model\Reflection\ReflectionComposite; |
19 | 18 | use Spaark\CompositeUtils\Model\Reflection\ReflectionProperty; |
20 | 19 | use Spaark\CompositeUtils\Model\Reflection\ReflectionMethod; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * Checks if the given class is equal to this one |
27 | 27 | * |
28 | - * @param Type $oject |
|
28 | + * @param Type $object |
|
29 | 29 | * @return boolean |
30 | 30 | */ |
31 | 31 | public function equals($object) : bool; |
@@ -43,7 +43,7 @@ |
||
43 | 43 | /** |
44 | 44 | * Creates this ObjectType with the given classname |
45 | 45 | * |
46 | - * @param mixed $class The name of the class this must be an |
|
46 | + * @param string $classname The name of the class this must be an |
|
47 | 47 | * instance of |
48 | 48 | */ |
49 | 49 | public function __construct($classname) |
@@ -14,7 +14,6 @@ |
||
14 | 14 | |
15 | 15 | namespace Spaark\CompositeUtils\Model\Reflection\Type; |
16 | 16 | |
17 | -use Spaark\CompositeUtils\Model\Collection\ListCollection\FlexibleList; |
|
18 | 17 | use Spaark\CompositeUtils\Model\ClassName; |
19 | 18 | |
20 | 19 | /** |
@@ -17,11 +17,6 @@ |
||
17 | 17 | use Spaark\CompositeUtils\Model\Reflection\ReflectionComposite; |
18 | 18 | use Spaark\CompositeUtils\Model\Reflection\ReflectionProperty; |
19 | 19 | use Spaark\CompositeUtils\Model\Reflection\Type\ObjectType; |
20 | -use Spaark\CompositeUtils\Model\Reflection\Type\MixedType; |
|
21 | -use Spaark\CompositeUtils\Model\Reflection\Type\StringType; |
|
22 | -use Spaark\CompositeUtils\Model\Reflection\Type\IntegerType; |
|
23 | -use Spaark\CompositeUtils\Model\Reflection\Type\BooleanType; |
|
24 | -use Spaark\CompositeUtils\Model\Reflection\Type\CollectionType; |
|
25 | 20 | use Spaark\CompositeUtils\Model\Reflection\Type\ScalarType; |
26 | 21 | use Spaark\CompositeUtils\Model\Reflection\Type\AbstractType; |
27 | 22 | use Spaark\CompositeUtils\Exception\CannotWritePropertyException; |
@@ -14,8 +14,6 @@ |
||
14 | 14 | |
15 | 15 | namespace Spaark\CompositeUtils\Model\Collection\Map; |
16 | 16 | |
17 | -use Spaark\CompositeUtils\Traits\AutoConstructTrait; |
|
18 | - |
|
19 | 17 | /** |
20 | 18 | * Abstract Iterator for Map datatypes |
21 | 19 | * |
@@ -169,6 +169,9 @@ |
||
169 | 169 | return new ObjectType($context); |
170 | 170 | } |
171 | 171 | |
172 | + /** |
|
173 | + * @param string $var |
|
174 | + */ |
|
172 | 175 | public function scalarToType($var) : ?AbstractType |
173 | 176 | { |
174 | 177 | switch (strtolower($var)) |
@@ -37,8 +37,6 @@ |
||
37 | 37 | /** |
38 | 38 | * Adds an element to the Map |
39 | 39 | * |
40 | - * @param KeyType $key The key to add |
|
41 | - * @param ValueType $value The value to add |
|
42 | 40 | */ |
43 | 41 | public function insert(Pair $pair) |
44 | 42 | { |