Completed
Push — 5.6 ( 679697...f4d50c )
by Jeroen
16:35 queued 10:49
created
src/Kunstmaan/PagePartBundle/Twig/Extension/PageTemplateTwigExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @return array
33
+     * @return TwigFunction[]
34 34
      */
35 35
     public function getFunctions()
36 36
     {
Please login to merge, or discard this patch.
src/Kunstmaan/SitemapBundle/Twig/SitemapTwigExtension.php 1 patch
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
      * Returns a list of functions to add to the existing list.
18 18
      *
19
-     * @return array An array of functions
19
+     * @return TwigFunction[] An array of functions
20 20
      */
21 21
     public function getFunctions()
22 22
     {
Please login to merge, or discard this patch.
src/Kunstmaan/TranslatorBundle/Model/Translation/TranslationGroup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @return mixed
106
+     * @return string
107 107
      */
108 108
     public function getId()
109 109
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/Menu/MenuBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     private $requestStack;
41 41
 
42 42
     /**
43
-     * @param ContainerInterface|RequestStack $requestStack
43
+     * @param \PHPUnit\Framework\MockObject\MockObject $requestStack
44 44
      */
45 45
     public function __construct(/* RequestStack */ $requestStack)
46 46
     {
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Helper/UserProcessor.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     private $tokenStorage;
32 32
 
33 33
     /**
34
-     * @param ContainerInterface|TokenStorageInterface $tokenStorage
34
+     * @param \PHPUnit\Framework\MockObject\MockObject $tokenStorage
35 35
      */
36 36
     public function __construct(/*TokenStorageInterface */ $tokenStorage)
37 37
     {
Please login to merge, or discard this patch.
Kunstmaan/GeneratorBundle/Tests/unit/Generator/DefaultSiteGeneratorTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -40,6 +40,9 @@
 block discarded – undo
40 40
         unlink(__DIR__ . '/../../_data/' . $basePath . 'Exception/error503.html.twig');
41 41
     }
42 42
 
43
+    /**
44
+     * @param string $path
45
+     */
43 46
     protected function getBundle($path)
44 47
     {
45 48
         $bundle = $this->createMock('Symfony\Component\HttpKernel\Bundle\BundleInterface');
Please login to merge, or discard this patch.
src/Kunstmaan/NodeBundle/Router/SlugRouter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     /**
63 63
      * The constructor for this service
64 64
      *
65
-     * @param ContainerInterface $container
65
+     * @param \PHPUnit\Framework\MockObject\MockObject $domainConfiguration
66 66
      */
67 67
     public function __construct(
68 68
         /* DomainConfigurationInterface */ $domainConfiguration,
Please login to merge, or discard this patch.
Tests/unit/EventListener/NodeIndexUpdateEventListenerTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -146,6 +146,9 @@  discard block
 block discarded – undo
146 146
         new NodeIndexUpdateEventListener($this->getContainer($this->getSearchConfiguration(false)), $em);
147 147
     }
148 148
 
149
+    /**
150
+     * @param \PHPUnit\Framework\MockObject\MockObject $searchConfigMock
151
+     */
149 152
     private function getContainer($searchConfigMock)
150 153
     {
151 154
         $container = $this->createMock('Symfony\Component\DependencyInjection\ContainerInterface');
@@ -160,6 +163,9 @@  discard block
 block discarded – undo
160 163
         return $container;
161 164
     }
162 165
 
166
+    /**
167
+     * @param boolean $expectCall
168
+     */
163 169
     private function getSearchConfiguration($expectCall)
164 170
     {
165 171
         $searchConfig = $this->createMock(NodePagesConfiguration::class);
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Event/DeepCloneAndSaveEvent.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param mixed $clonedEntity
33
+     * @param \stdClass $clonedEntity
34 34
      *
35 35
      * @return DeepCloneAndSaveEvent
36 36
      */
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @param mixed $entity
53
+     * @param \stdClass $entity
54 54
      *
55 55
      * @return DeepCloneAndSaveEvent
56 56
      */
Please login to merge, or discard this patch.