Completed
Push — master ( 678c0d...3e10a5 )
by Mathieu
02:10
created
src/Charcoal/Factory/AbstractFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -419,7 +419,7 @@
 block discarded – undo
419 419
     }
420 420
 
421 421
     /**
422
-     * @return callable|null
422
+     * @return callable
423 423
      */
424 424
     public function callback()
425 425
     {
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -426,13 +426,13 @@
 block discarded – undo
426 426
         return $this->callback;
427 427
     }
428 428
 
429
- /**
430
-  * The Generic factory resolves the class name from an exact FQN.
431
-  *
432
-  * @param string $type The "type" of object to resolve (the object ident).
433
-  * @throws InvalidArgumentException If the type parameter is not a string.
434
-  * @return string The resolved class name (FQN).
435
-  */
429
+    /**
430
+     * The Generic factory resolves the class name from an exact FQN.
431
+     *
432
+     * @param string $type The "type" of object to resolve (the object ident).
433
+     * @throws InvalidArgumentException If the type parameter is not a string.
434
+     * @return string The resolved class name (FQN).
435
+     */
436 436
     public function resolve($type)
437 437
     {
438 438
         if (!is_string($type)) {
Please login to merge, or discard this patch.