Completed
Push — improvement ( 796547...e66d5d )
by
unknown
21:57
created
eZ/Bundle/EzPublishRestBundle/Features/Context/SubContext/EzRest.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -46,6 +46,8 @@
 block discarded – undo
46 46
 
47 47
     /**
48 48
      * @When I set header :header with/for :object object
49
+     * @param string $header
50
+     * @param string $object
49 51
      */
50 52
     public function setHeaderWithObject($header, $object)
51 53
     {
Please login to merge, or discard this patch.
Publish/Core/Search/Legacy/Content/WordIndexer/Gateway/DoctrineDatabase.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 eZ\Publish\Core\Search\Legacy\Content\FullTextData;
15 15
 use eZ\Publish\SPI\Persistence\Content;
16 16
 use eZ\Publish\SPI\Persistence\Content\Type\Handler as SPITypeHandler;
17
-use eZ\Publish\SPI\Search\Field;
18 17
 
19 18
 /**
20 19
  * WordIndexer gateway implementation using the Doctrine database.
Please login to merge, or discard this patch.
Command/LegacyStorage/RegenerateUrlAliasesCommand.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -893,6 +893,7 @@
 block discarded – undo
893 893
      * Returns total number of Locations in the database.
894 894
      *
895 895
      * The number excludes absolute root Location, which does not have an URL alias.
896
+     * @return integer
896 897
      */
897 898
     protected function getTotalLocationCount()
898 899
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishRestBundle/Tests/Functional/RoleTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,6 +117,7 @@  discard block
 block discarded – undo
117 117
      * @depends testCreateRole
118 118
      * Covers POST /user/roles/{roleId}
119 119
      *
120
+     * @param string $roleHref
120 121
      * @return string The created role draft href
121 122
      */
122 123
     public function testCreateRoleDraft($roleHref)
@@ -410,7 +411,6 @@  discard block
 block discarded – undo
410 411
     /**
411 412
      * @covers       \POST /user/users/{userId}/roles
412 413
      *
413
-     * @param string $roleHref
414 414
      * @param array $limitation
415 415
      *
416 416
      * @return string assigned role href
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishIOBundle/Tests/EventListener/StreamFileListenerTest.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -131,6 +131,7 @@  discard block
 block discarded – undo
131 131
     }
132 132
 
133 133
     /**
134
+     * @param string $semanticPath
134 135
      * @return Request
135 136
      */
136 137
     protected function createRequest($semanticPath, $host = 'localhost')
@@ -142,7 +143,7 @@  discard block
 block discarded – undo
142 143
     }
143 144
 
144 145
     /**
145
-     * @param $request
146
+     * @param Request $request
146 147
      *
147 148
      * @return GetResponseEvent
148 149
      */
Please login to merge, or discard this patch.
Command/LegacyStorage/CleanUpRelationTypeEqZeroCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -109,6 +109,9 @@
 block discarded – undo
109 109
         $conn->exec('DELETE FROM ezcontentobject_link WHERE relation_type = 0');
110 110
     }
111 111
 
112
+    /**
113
+     * @param integer $totalCount
114
+     */
112 115
     protected function executeList(OutputInterface $output, $totalCount)
113 116
     {
114 117
         $table = new Table($output);
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishCoreBundle/Command/ReindexCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,6 +161,9 @@  discard block
 block discarded – undo
161 161
         }
162 162
     }
163 163
 
164
+    /**
165
+     * @param boolean $commit
166
+     */
164 167
     protected function indexIncrementally(InputInterface $input, OutputInterface $output, $iterationCount, $commit)
165 168
     {
166 169
         if ($contentIds = $input->getOption('content-ids')) {
@@ -223,6 +226,10 @@  discard block
 block discarded – undo
223 226
         $progress->finish();
224 227
     }
225 228
 
229
+    /**
230
+     * @param integer $processCount
231
+     * @param integer $iterationCount
232
+     */
226 233
     private function runParallelProcess(ProgressBar $progress, Statement $stmt, $processCount, $iterationCount, $commit)
227 234
     {
228 235
         /**
@@ -277,7 +284,7 @@  discard block
 block discarded – undo
277 284
     }
278 285
 
279 286
     /**
280
-     * @param mixed $locationId
287
+     * @param integer $locationId
281 288
      * @param bool $count
282 289
      *
283 290
      * @return \Doctrine\DBAL\Driver\Statement
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Tests/Service/Mock/DomainMapperTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,9 @@
 block discarded – undo
13 13
 use eZ\Publish\API\Repository\Values\Content\VersionInfo as APIVersionInfo;
14 14
 use eZ\Publish\Core\Repository\Tests\Service\Mock\Base as BaseServiceMockTest;
15 15
 use eZ\Publish\Core\Repository\Helper\DomainMapper;
16
-use eZ\Publish\SPI\Persistence\Content\ContentInfo;
16
+use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo;
17 17
 use eZ\Publish\SPI\Persistence\Content\Location;
18 18
 use eZ\Publish\SPI\Persistence\Content\VersionInfo as SPIVersionInfo;
19
-use eZ\Publish\SPI\Persistence\Content\ContentInfo as SPIContentInfo;
20 19
 
21 20
 /**
22 21
  * Mock test case for internal DomainMapper.
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishRestBundle/Tests/EventListener/EventListenerTest.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,6 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param bool $csrfEnabled
136 135
      *
137 136
      * @return CsrfListener
138 137
      */
Please login to merge, or discard this patch.