Completed
Push — master ( d1d65c...fa1690 )
by Tadas
20:39 queued 05:51
created
Doctrine/EntityManager/NodeManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\ORM\EntityManager;
15 15
 use Doctrine\ORM\EntityRepository;
16 16
 use Tadcka\Component\Tree\Model\Manager\NodeManager as BaseNodeManager;
17
-use Tadcka\Component\Tree\Model\NodeInterface as TreeNodeInterface;
18 17
 use Tadcka\Component\Tree\Model\NodeInterface;
19 18
 use Tadcka\Component\Tree\Model\TreeInterface;
20 19
 use Tadcka\Component\Tree\Model\Manager\NodeManagerInterface;
Please login to merge, or discard this patch.
Tests/Routing/RouteGeneratorTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
     /**
132 132
      * @param \Closure $callback
133
-     * @param MockObject|RouteInterface $route
133
+     * @param MockObject $route
134 134
      */
135 135
     private function addRouteMethodSetRoutePattern($callback, MockObject $route)
136 136
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     }
141 141
 
142 142
     /**
143
-     * @param MockObject|RouteInterface $route
143
+     * @param MockObject $route
144 144
      */
145 145
     private function addRouteProviderMethodGetRouteByPattern(MockObject $route)
146 146
     {
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 
162 162
     /**
163 163
      * @param string $name
164
-     * @param MockObject|RouteInterface $route
164
+     * @param MockObject $route
165 165
      */
166 166
     private function addRouteName($name, MockObject $route)
167 167
     {
Please login to merge, or discard this patch.
Tests/Routing/RouterHelperTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -127,6 +127,9 @@
 block discarded – undo
127 127
         $this->assertEquals('/bump-test/bump', $this->routerHelper->normalizeRoutePattern('/bump test/bump'));
128 128
     }
129 129
 
130
+    /**
131
+     * @param null|string $title
132
+     */
130 133
     private function fillParent(NodeInterface $parent, $title)
131 134
     {
132 135
         $nodeTranslation = $this->getMockNodeTranslation();
Please login to merge, or discard this patch.