Completed
Push — stash_transaction_race ( 55e5bd )
by André
29:46 queued 14:41
created
eZ/Publish/API/Repository/ContentTypeService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
      * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the user is not allowed to delete a content type group
88 88
      * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException If  a to be deleted content type has instances
89 89
      *
90
-     * @param \eZ\Publish\API\Repository\Values\ContentType\ContentTypeGroup $ContentTypeGroup
90
+     * @param \eZ\Publish\API\Repository\Values\ContentType\ContentTypeGroup $contentTypeGroup
91 91
      */
92 92
     public function deleteContentTypeGroup(ContentTypeGroup $contentTypeGroup);
93 93
 
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/BaseNonRedundantFieldSetTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -183,6 +183,9 @@
 block discarded – undo
183 183
         return $this->createTestContent('eng-US', $fieldValues);
184 184
     }
185 185
 
186
+    /**
187
+     * @param string $initialLanguageCode
188
+     */
186 189
     protected function updateTestContent($initialLanguageCode, array $fieldValues)
187 190
     {
188 191
         $repository = $this->getRepository();
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/ContentServiceTest.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2737,7 +2737,7 @@  discard block
 block discarded – undo
2737 2737
     /**
2738 2738
      * Test for the addRelation() method.
2739 2739
      *
2740
-     * @return \eZ\Publish\API\Repository\Values\Content\Content
2740
+     * @return Relation[]
2741 2741
      *
2742 2742
      * @see \eZ\Publish\API\Repository\ContentService::addRelation()
2743 2743
      * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
@@ -4554,7 +4554,7 @@  discard block
 block discarded – undo
4554 4554
      * given properties are available in $actualAliases and not more.
4555 4555
      *
4556 4556
      * @param array $expectedAliasProperties
4557
-     * @param array $actualAliases
4557
+     * @param URLAlias[] $actualAliases
4558 4558
      */
4559 4559
     private function assertAliasesCorrect(array $expectedAliasProperties, array $actualAliases)
4560 4560
     {
@@ -4716,7 +4716,7 @@  discard block
 block discarded – undo
4716 4716
     /**
4717 4717
      * Returns the default fixture of fields used in most tests.
4718 4718
      *
4719
-     * @return \eZ\Publish\API\Repository\Values\Content\Field[]
4719
+     * @return Field[]
4720 4720
      */
4721 4721
     private function createFieldsFixture()
4722 4722
     {
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/ContentTypeServiceTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -861,7 +861,7 @@
 block discarded – undo
861 861
      * Asserts that the given $actualDefinition is correctly created from the
862 862
      * create struct in $expectedCreate.
863 863
      *
864
-     * @param \eZ\Publish\API\Repository\Values\FieldDefinitionCreateStruct $expectedDefinitionCreate
864
+     * @param \eZ\Publish\API\Repository\Values\FieldDefinitionCreateStruct $expectedCreate
865 865
      * @param \eZ\Publish\API\Repository\Values\FieldDefinition $actualDefinition
866 866
      */
867 867
     protected function assertFieldDefinitionsEqual($expectedCreate, $actualDefinition)
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/BaseIntegrationTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -482,6 +482,7 @@
 block discarded – undo
482 482
      * Creates content with $fieldData.
483 483
      *
484 484
      * @param mixed $fieldData
485
+     * @param Repository\Values\ContentType\ContentType $contentType
485 486
      *
486 487
      * @return \eZ\Publish\API\Repository\Values\Content\Content
487 488
      */
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/CheckboxIntegrationTest.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 CheckboxValue
102 102
      */
103 103
     public function getValidCreationFieldData()
104 104
     {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * Get update field externals data.
165 165
      *
166
-     * @return array
166
+     * @return CheckboxValue
167 167
      */
168 168
     public function getValidUpdateFieldData()
169 169
     {
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/ImageIntegrationTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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 ImageValue
155 155
      */
156 156
     public function getValidCreationFieldData()
157 157
     {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     /**
234 234
      * Get update field externals data.
235 235
      *
236
-     * @return array
236
+     * @return ImageValue
237 237
      */
238 238
     public function getValidUpdateFieldData()
239 239
     {
Please login to merge, or discard this patch.
eZ/Publish/API/Repository/Tests/FieldType/MapLocationIntegrationTest.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 MapLocationValue
102 102
      */
103 103
     public function getValidCreationFieldData()
104 104
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     /**
193 193
      * Get update field externals data.
194 194
      *
195
-     * @return array
195
+     * @return MapLocationValue
196 196
      */
197 197
     public function getValidUpdateFieldData()
198 198
     {
Please login to merge, or discard this patch.
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.