Completed
Push — ezp-30928-as_a_developer_i_wan... ( b10e65...060dcb )
by
unknown
14:48
created
eZ/Publish/API/Repository/Tests/FieldType/RatingIntegrationTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Get initial field data for valid object creation.
100 100
      *
101
-     * @return mixed
101
+     * @return RatingValue
102 102
      */
103 103
     public function getValidCreationFieldData()
104 104
     {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     /**
167 167
      * Get update field externals data.
168 168
      *
169
-     * @return array
169
+     * @return RatingValue
170 170
      */
171 171
     public function getValidUpdateFieldData()
172 172
     {
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/RelationIntegrationTest.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * @param \eZ\Publish\API\Repository\Values\Content\Content $content
38 38
      *
39
-     * @return array|\eZ\Publish\API\Repository\Values\Content\Relation[]
39
+     * @return Relation[]
40 40
      */
41 41
     public function getCreateExpectedRelations(Content $content)
42 42
     {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     /**
58 58
      * @param \eZ\Publish\API\Repository\Values\Content\Content $content
59 59
      *
60
-     * @return array|\eZ\Publish\API\Repository\Values\Content\Relation[]
60
+     * @return Relation[]
61 61
      */
62 62
     public function getUpdateExpectedRelations(Content $content)
63 63
     {
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     /**
152 152
      * Get initial field data for valid object creation.
153 153
      *
154
-     * @return mixed
154
+     * @return RelationValue
155 155
      */
156 156
     public function getValidCreationFieldData()
157 157
     {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     /**
217 217
      * Get update field externals data.
218 218
      *
219
-     * @return array
219
+     * @return RelationValue
220 220
      */
221 221
     public function getValidUpdateFieldData()
222 222
     {
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/UserIntegrationTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     /**
106 106
      * Get initial field externals data.
107 107
      *
108
-     * @return array
108
+     * @return UserValue
109 109
      */
110 110
     public function getValidCreationFieldData()
111 111
     {
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     /**
179 179
      * Get update field externals data.
180 180
      *
181
-     * @return array
181
+     * @return UserValue
182 182
      */
183 183
     public function getValidUpdateFieldData()
184 184
     {
Please login to merge, or discard this patch.
API/Repository/Tests/SearchServiceTranslationLanguageFallbackTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @param array $parentLocationIds
135
+     * @param integer[] $parentLocationIds
136 136
      *
137 137
      * @return array
138 138
      */
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Values/Content/Query/Criterion/LogicalNot.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * Will match of the given criterion doesn't match
24 24
      *
25
-     * @param Criterion[] $criteria One criterion, as an array
25
+     * @param Criterion[] $criterion One criterion, as an array
26 26
      *
27 27
      * @throws \InvalidArgumentException if more than one criterion is given in the array parameter
28 28
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/Base/ServiceContainer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     protected $bypassCache;
68 68
 
69 69
     /**
70
-     * @param string|ContainerInterface $container Path to the container file or container instance
70
+     * @param ContainerBuilder $container Path to the container file or container instance
71 71
      * @param string $installDir Installation directory, required by default 'containerBuilder.php' file
72 72
      * @param string $cacheDir Directory where PHP container cache will be stored
73 73
      * @param bool $debug Default false should be used for production, if true resources will be checked
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/Author/SearchField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param \eZ\Publish\SPI\Persistence\Content\Field $field
25 25
      * @param \eZ\Publish\SPI\Persistence\Content\Type\FieldDefinition $fieldDefinition
26 26
      *
27
-     * @return \eZ\Publish\SPI\Search\Field[]
27
+     * @return Search\Field[]
28 28
      */
29 29
     public function getIndexData(Field $field, FieldDefinition $fieldDefinition)
30 30
     {
Please login to merge, or discard this patch.
Core/FieldType/BinaryFile/BinaryFileStorage/Gateway/LegacyStorage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * add additional columns to be fetched from the database. Please do not
52 52
      * forget to call the parent when overwriting this method.
53 53
      *
54
-     * @param eZ\Publish\Core\Persistence\Database\SelectQuery $selectQuery
54
+     * @param SelectQuery $selectQuery
55 55
      * @param int $fieldId
56 56
      * @param int $versionNo
57 57
      */
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * add additional columns to be set in the database. Please do not forget
73 73
      * to call the parent when overwriting this method.
74 74
      *
75
-     * @param \ezcQueryInsert $insertQuery
75
+     * @param InsertQuery $insertQuery
76 76
      * @param VersionInfo $versionInfo
77 77
      * @param Field $field
78 78
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/FieldType/BinaryFile/Type.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use eZ\Publish\Core\FieldType\BinaryBase\Type as BinaryBaseType;
14 14
 use eZ\Publish\SPI\Persistence\Content\FieldValue;
15 15
 use eZ\Publish\SPI\FieldType\Value as SPIValue;
16
-use eZ\Publish\Core\FieldType\Value as BaseValue;
17 16
 
18 17
 /**
19 18
  * The TextLine field type.
Please login to merge, or discard this patch.