Completed
Push — master ( 61bf89...334d8a )
by Vitaly
04:21
created
src/Builder.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,6 @@
 block discarded – undo
57 57
      * Container builder constructor.
58 58
      *
59 59
      * @param Generator       $generator     PHP code generator
60
-     * @param ClassMetadata[] $classMetadata Collection of classes metadata for container
61 60
      */
62 61
     public function __construct(Generator $generator)
63 62
     {
Please login to merge, or discard this patch.
src/definition/resolver/xml/XmlResolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@
 block discarded – undo
267 267
     /**
268 268
      * Convert xml to array
269 269
      *
270
-     * @param $xmlObject
270
+     * @param \SimpleXMLElement $xmlObject
271 271
      * @param array $out
272 272
      * @return array
273 273
      */
Please login to merge, or discard this patch.
src/definition/ClassDefinition.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
      * Get scope from definition
168 168
      *
169 169
      * @param string $id
170
-     * @return mixed
170
+     * @return AbstractScope
171 171
      * @throws ScopeNotFoundException
172 172
      */
173 173
     public function getScope(string $id): AbstractScope
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     }
200 200
 
201 201
     /**
202
-     * @param string|ClassReference $className
202
+     * @param ClassReference $className
203 203
      * @return ClassDefinition
204 204
      * @throws \InvalidArgumentException
205 205
      */
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
     /**
321 321
      * Get property definition
322 322
      *
323
-     * @param $propertyName
323
+     * @param string $propertyName
324 324
      * @return PropertyDefinition
325 325
      * @throws PropertyDefinitionNotFoundException
326 326
      */
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
     /**
347 347
      * Get method definition
348 348
      *
349
-     * @param $methodName
349
+     * @param string $methodName
350 350
      * @return MethodDefinition
351 351
      * @throws MethodDefinitionNotFoundException
352 352
      */
Please login to merge, or discard this patch.
src/definition/builder/DefinitionCompiler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
      *
186 186
      * @param DefinitionBuilder $definitionBuilder
187 187
      * @param string $interfaceName
188
-     * @return string
188
+     * @return ReferenceInterface
189 189
      * @throws ImplementerForTypeNotFoundException
190 190
      * TODO Add interface resolvers functionality
191 191
      */
Please login to merge, or discard this patch.