Completed
Push — prototype ( 942ea2...3bfdd7 )
by Peter
04:02
created
library/WebinoConfigLib/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @param FeatureInterface|Config $feature
45
+     * @param FeatureInterface $feature
46 46
      */
47 47
     public function addFeature(FeatureInterface $feature)
48 48
     {
Please login to merge, or discard this patch.
library/WebinoConfigLib/Router/AbstractRoute.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use WebinoConfigLib\AbstractConfig;
6 6
 use WebinoConfigLib\Exception\InvalidArgumentException;
7
-use Zend\Stdlib\ArrayUtils;
8 7
 
9 8
 /**
10 9
  * Class AbstractRoute
Please login to merge, or discard this patch.
library/WebinoDomLib/Dom.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     /**
35 35
      * Return an element collection
36 36
      *
37
-     * @param string|array $locator
37
+     * @param string $locator
38 38
      * @return Dom\NodeList
39 39
      */
40 40
     public function locate($locator)
Please login to merge, or discard this patch.
library/WebinoDomLib/Dom/Locator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * @param NodeInterface $node
25 25
      * @param $locator
26
-     * @return mixed
26
+     * @return \DOMNodeList
27 27
      */
28 28
     public function query(NodeInterface $node, $locator)
29 29
     {
Please login to merge, or discard this patch.
library/WebinoDomLib/Dom/Renderer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param NodeLocatorInterface $doc
19
-     * @param State $cfg
19
+     * @param Config $cfg
20 20
      */
21 21
     public function render(NodeLocatorInterface $doc, Config $cfg, RenderEvent $parentEvent = null, callable $callback = null)
22 22
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
                 $event = new RenderEvent($this, $node, $spec, $parentEvent);
36 36
 
37
-                $events->attach(RenderEvent::class, function (RenderEvent $subEvent) use ($spec, $event) {
37
+                $events->attach(RenderEvent::class, function(RenderEvent $subEvent) use ($spec, $event) {
38 38
                     $view = $spec->getView();
39 39
                     if (empty($view)) {
40 40
                         return;
Please login to merge, or discard this patch.
library/WebinoDomLib/Event/RenderEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
      * @param Renderer $target
44 44
      * @param NodeInterface $node
45 45
      * @param SpecInterface $spec
46
-     * @param self|null $parent
46
+     * @param null|\self $parent
47 47
      */
48 48
     public function __construct(Renderer $target, NodeInterface $node, SpecInterface $spec, self $parent = null)
49 49
     {
Please login to merge, or discard this patch.
library/WebinoEventLib/AbstractEvent.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * {@inheritdoc}
16
+     * @param string $name
16 17
      */
17 18
     public function __construct($name = null, $target = null, $params = null)
18 19
     {
Please login to merge, or discard this patch.
library/WebinoEventLib/EventsAwareTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      * $this->eventIdentifier property.
24 24
      *
25 25
      * @param EventManagerInterface $events
26
-     * @return mixed
26
+     * @return EventsAwareTrait
27 27
      */
28 28
     public function setEvents(EventManagerInterface $events)
29 29
     {
Please login to merge, or discard this patch.
library/WebinoViewLib/Component/ComponentStateTrait.php 1 patch
Unused Use Statements   -9 removed lines patch added patch discarded remove patch
@@ -2,19 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace WebinoViewLib\Component;
4 4
 
5
-use WebinoAppLib\Event\AppEvent;
6 5
 use WebinoAppLib\Event\DispatchEvent;
7
-use WebinoAppLib\Feature\HttpListener;
8 6
 use WebinoAppLib\Service\Initializer\RoutingAwareTrait;
9
-use WebinoConfigLib\Feature\FeatureInterface;
10
-use WebinoDomLib\Dom\Config\SpecConfigAggregateInterface;
11 7
 use WebinoDomLib\Dom\NodeInterface;
12 8
 use WebinoDomLib\Event\RenderEvent;
13
-use WebinoEventLib\ListenerAggregateTrait;
14
-use WebinoViewLib\Feature\NodeView;
15
-use WebinoViewLib\Feature\ViewListener;
16
-use Zend\EventManager\ListenerAggregateInterface;
17
-use Zend\Stdlib\CallbackHandler;
18 9
 
19 10
 /**
20 11
  * Class ComponentStateTrait
Please login to merge, or discard this patch.