Completed
Push — master ( 733d1e...0ffb73 )
by Jeroen
07:22 queued 14s
created
TranslatorBundle/Service/Command/Exporter/ExportCommandHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
     }
166 166
 
167 167
     /**
168
-     * @param $translationRepository
168
+     * @param \PHPUnit\Framework\MockObject\MockObject $translationRepository
169 169
      */
170 170
     public function setTranslationRepository($translationRepository)
171 171
     {
Please login to merge, or discard this patch.
FormBundle/Tests/unit/AdminList/FormSubmissionAdminListConfiguratorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @return \Doctrine\ORM\EntityManager
42
+     * @return \PHPUnit\Framework\MockObject\MockObject
43 43
      */
44 44
     protected function getMockedEntityManager()
45 45
     {
Please login to merge, or discard this patch.
Tests/unit/AdminList/FormSubmissionExportListConfiguratorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @return \Doctrine\ORM\EntityManager
42
+     * @return \PHPUnit\Framework\MockObject\MockObject
43 43
      */
44 44
     protected function getMockedEntityManager()
45 45
     {
Please login to merge, or discard this patch.
TranslatorBundle/Service/Command/Importer/ImportCommandHandler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -258,6 +258,9 @@
 block discarded – undo
258 258
         $this->importer = $importer;
259 259
     }
260 260
 
261
+    /**
262
+     * @param ImportCommand $importCommand
263
+     */
261 264
     private function importSf4TranslationFiles($importCommand)
262 265
     {
263 266
         $finder = $this->translationFileExplorer->find($this->kernel->getProjectDir(), $this->determineLocalesToImport($importCommand), 'translations');
Please login to merge, or discard this patch.
Kunstmaan/NodeSearchBundle/EventListener/NodeIndexUpdateEventListener.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -29,6 +29,10 @@
 block discarded – undo
29 29
     /** @var array */
30 30
     private $entityChangeSet;
31 31
 
32
+    /**
33
+     * @param \PHPUnit\Framework\MockObject\MockObject $nodePagesConfiguration
34
+     * @param \PHPUnit\Framework\MockObject\MockObject $em
35
+     */
32 36
     public function __construct(/* NodePagesConfiguration */
33 37
         $nodePagesConfiguration, /* EntityManagerInterface */
34 38
         $em = null)
Please login to merge, or discard this patch.
src/Kunstmaan/ConfigBundle/Controller/ConfigController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@
 block discarded – undo
55 55
      * @param AuthorizationCheckerInterface $authorizationChecker
56 56
      * @param EntityManagerInterface        $em
57 57
      * @param array                         $configuration
58
-     * @param ContainerInterface            $container
59 58
      * @param FormFactoryInterface          $formFactory
60 59
      */
61 60
     public function __construct(
Please login to merge, or discard this patch.
src/Kunstmaan/SearchBundle/Provider/ElasticaProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     /**
116 116
      * @param string $indexName
117 117
      * @param string $indexType
118
-     * @param array  $ids
118
+     * @param string[]  $ids
119 119
      *
120 120
      * @return \Elastica\Bulk\ResponseSet
121 121
      */
Please login to merge, or discard this patch.
src/Kunstmaan/AdminBundle/Twig/AdminPermissionsTwigExtension.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/AdminBundle/Twig/DateByLocaleExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     /**
15 15
      * Get Twig filters defined in this extension.
16 16
      *
17
-     * @return array
17
+     * @return TwigFilter[]
18 18
      */
19 19
     public function getFilters()
20 20
     {
Please login to merge, or discard this patch.