Completed
Push — master ( a8fb97...ba7e2b )
by Mathieu
05:06
created
src/Charcoal/Factory/AbstractFactory.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
 
314 314
     /**
315 315
      * @param callable $callback The object callback.
316
-     * @return AbstractFatory Chainable
316
+     * @return AbstractFactory Chainable
317 317
      */
318 318
     public function setCallback(callable $callback)
319 319
     {
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
     }
323 323
 
324 324
     /**
325
-     * @return callable|null
325
+     * @return callable
326 326
      */
327 327
     public function callback()
328 328
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * @param array $data Constructor dependencies.
52 52
      */
53
-    public function __construct(array $data=null)
53
+    public function __construct(array $data = null)
54 54
     {
55 55
         if (isset($data['arguments'])) {
56 56
             $this->setArguments($data['arguments']);
Please login to merge, or discard this patch.
src/Charcoal/Factory/MapFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     private $map = [];
22 22
 
23
-    public function __construct($data=null)
23
+    public function __construct($data = null)
24 24
     {
25 25
         parent::__construct($data);
26 26
 
Please login to merge, or discard this patch.