Completed
Push — master ( 01e425...9680ce )
by
unknown
13:57 queued 15s
created
eZ/Publish/Core/Persistence/Doctrine/SelectDoctrineQuery.php 1 patch
Doc Comments   -14 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters..
49 49
      *
50
-     * @param string|array(string) $... Either a string with a column name or an array of column names.
51 50
      *
52 51
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery returns a pointer to $this.
53 52
      */
@@ -107,7 +106,6 @@  discard block
 block discarded – undo
107 106
      *
108 107
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters..
109 108
      *
110
-     * @param string|array(string) $... Either a string with a column name or an array of column names.
111 109
      *
112 110
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery returns a pointer to $this.
113 111
      */
@@ -131,7 +129,6 @@  discard block
 block discarded – undo
131 129
      *
132 130
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters.
133 131
      *
134
-     * @param string|array(string) $... Either a string with a table name or an array of table names.
135 132
      *
136 133
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery a pointer to $this
137 134
      */
@@ -183,8 +180,6 @@  discard block
 block discarded – undo
183 180
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with inconsistent parameters or if
184 181
      *         invoked without preceding call to from().
185 182
      *
186
-     * @param string $table2,... The table to join with, followed by either the
187
-     *                           two join columns, or a join condition.
188 183
      *
189 184
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery
190 185
      */
@@ -236,8 +231,6 @@  discard block
 block discarded – undo
236 231
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with inconsistent parameters or if
237 232
      *         invoked without preceding call to from().
238 233
      *
239
-     * @param string $table2,... The table to join with, followed by either the
240
-     *                           two join columns, or a join condition.
241 234
      *
242 235
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery
243 236
      */
@@ -289,8 +282,6 @@  discard block
 block discarded – undo
289 282
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with inconsistent parameters or if
290 283
      *         invoked without preceding call to from().
291 284
      *
292
-     * @param string $table2,... The table to join with, followed by either the
293
-     *                           two join columns, or a join condition.
294 285
      *
295 286
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery
296 287
      */
@@ -313,8 +304,6 @@  discard block
 block discarded – undo
313 304
      *
314 305
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters.
315 306
      *
316
-     * @param string|array(string) $... Either a string with a logical expression name
317
-     * or an array with logical expressions.
318 307
      *
319 308
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery
320 309
      */
@@ -378,7 +367,6 @@  discard block
 block discarded – undo
378 367
      *
379 368
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters.
380 369
      *
381
-     * @param string $column a column name in the result set
382 370
      *
383 371
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery a pointer to $this
384 372
      */
@@ -399,8 +387,6 @@  discard block
 block discarded – undo
399 387
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException
400 388
      *         if called with no parameters.
401 389
      *
402
-     * @param string|array(string) $... Either a string with a logical expression name
403
-     *                             or an array with logical expressions.
404 390
      *
405 391
      * @return \eZ\Publish\Core\Persistence\Database\SelectQuery a pointer to $this
406 392
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Doctrine/UpdateDoctrineQuery.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,6 @@
 block discarded – undo
54 54
      *
55 55
      * @throws \eZ\Publish\Core\Persistence\Database\QueryException if called with no parameters.
56 56
      *
57
-     * @param string|array(string) $... Either a string with a logical expression name
58
-     * or an array with logical expressions.
59 57
      *
60 58
      * @return \eZ\Publish\Core\Persistence\Database\UpdateQuery
61 59
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Search/Common/FieldValueMapper/BooleanMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param \eZ\Publish\SPI\Search\Field $field
38 38
      *
39
-     * @return mixed
39
+     * @return boolean
40 40
      */
41 41
     public function map(Field $field)
42 42
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Search/Common/FieldValueMapper/IntegerMapper.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
      * @param \eZ\Publish\SPI\Search\Field $field
36 36
      *
37
-     * @return mixed
37
+     * @return integer
38 38
      */
39 39
     public function map(Field $field)
40 40
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Search/Common/FieldValueMapper/PriceMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      *
37 37
      * @param \eZ\Publish\SPI\Search\Field $field
38 38
      *
39
-     * @return mixed
39
+     * @return double
40 40
      */
41 41
     public function map(Field $field)
42 42
     {
Please login to merge, or discard this patch.
Legacy/Content/Common/Gateway/SortClauseHandler/MapLocationDistance.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      * @param \eZ\Publish\API\Repository\Values\Content\Query\SortClause $sortClause
80 80
      * @param int $number
81 81
      *
82
-     * @return string
82
+     * @return string[]
83 83
      */
84 84
     public function applySelect(SelectQuery $query, SortClause $sortClause, $number)
85 85
     {
Please login to merge, or discard this patch.
eZ/Publish/SPI/Tests/FieldType/SelectionIntegrationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * Get handler with required custom field types registered.
51 51
      *
52
-     * @return Handler
52
+     * @return \eZ\Publish\SPI\Persistence\Handler|null
53 53
      */
54 54
     public function getCustomHandler()
55 55
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Legacy/Content/FieldValue/ConverterRegistry.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
      * Register a $converter for $typeName.
43 43
      *
44 44
      * @param string $typeName
45
-     * @param mixed $converter Callable or converter instance
45
+     * @param Converter $converter Callable or converter instance
46 46
      */
47 47
     public function register($typeName, $converter)
48 48
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/Persistence/Cache/Tests/AbstractBaseHandlerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-     * @param $key
112
+     * @param string $key
113 113
      * @param null $value If null the cache item will be assumed to be a cache miss here.
114 114
      * @param int $defaultLifetime
115 115
      *
Please login to merge, or discard this patch.