Completed
Push — index-time-boost ( 41c76a )
by Petar
18:23
created
eZ/Publish/Core/Repository/Values/ContentType/FieldType.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      * Returns the fallback default value of field type when no such default
155 155
      * value is provided in the field definition in content types.
156 156
      *
157
-     * @return mixed
157
+     * @return Value
158 158
      */
159 159
     public function getEmptyValue()
160 160
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      *
185 185
      * @param mixed $hash
186 186
      *
187
-     * @return mixed
187
+     * @return Value
188 188
      */
189 189
     public function fromHash($hash)
190 190
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/ContentTypeService.php 2 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      *
123 123
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If group can not be found
124 124
      *
125
-     * @param mixed $contentTypeGroupId
125
+     * @param string $contentTypeGroupId
126 126
      *
127 127
      * @return \eZ\Publish\API\Repository\Values\ContentType\ContentTypeGroup
128 128
      */
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * Get all Content Type Groups.
176 176
      *
177
-     * @return \eZ\Publish\API\Repository\Values\ContentType\ContentTypeGroup[]
177
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
178 178
      */
179 179
     public function loadContentTypeGroups()
180 180
     {
@@ -535,9 +535,9 @@  discard block
 block discarded – undo
535 535
      * ATTENTION: This is not an API method and only meant for internal use in
536 536
      * the REST Client implementation.
537 537
      *
538
-     * @param mixed $fieldDefinitionListReference
538
+     * @param string $fieldDefinitionListReference
539 539
      *
540
-     * @return \eZ\Publish\Core\REST\Client\Values\FieldDefinitionList
540
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
541 541
      */
542 542
     public function loadFieldDefinitionList($fieldDefinitionListReference)
543 543
     {
@@ -558,9 +558,9 @@  discard block
 block discarded – undo
558 558
      * ATTENTION: This is not an API method and only meant for internal use in
559 559
      * the REST Client implementation.
560 560
      *
561
-     * @param mixed $contentTypeGroupListReference
561
+     * @param string $contentTypeGroupListReference
562 562
      *
563
-     * @return \eZ\Publish\Core\REST\Client\Values\ContentTypeGroupRefList
563
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
564 564
      */
565 565
     public function loadContentTypeGroupList($contentTypeGroupListReference)
566 566
     {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
29 29
 use eZ\Publish\Core\REST\Common\RequestParser;
30 30
 use eZ\Publish\Core\REST\Common\Input\Dispatcher;
31 31
 use eZ\Publish\Core\REST\Common\Output\Visitor;
32
-use eZ\Publish\Core\REST\Common\Message; use eZ\Publish\Core\REST\Client\Exceptions\InvalidArgumentValue;
32
+use eZ\Publish\Core\REST\Common\Message;
33
+use eZ\Publish\Core\REST\Client\Exceptions\InvalidArgumentValue;
33 34
 use eZ\Publish\Core\REST\Common\Exceptions\InvalidArgumentException;
34 35
 use eZ\Publish\Core\REST\Common\Exceptions\ForbiddenException;
35 36
 use eZ\Publish\Core\REST\Client\Exceptions\BadStateException;
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/Input/Parser/Relation.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
      * @param array $data
43 43
      * @param \eZ\Publish\Core\REST\Common\Input\ParsingDispatcher $parsingDispatcher
44 44
      *
45
-     * @return \eZ\Publish\API\Repository\Values\Relation\Version
45
+     * @return Values\Content\Relation
46 46
      *
47 47
      * @todo Error handling
48 48
      * @todo Should the related ContentInfo structs really be loaded here or do
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/Input/Parser/Session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      *
53 53
      * @todo Error handling
54 54
      *
55
-     * @return \eZ\Publish\API\Repository\Values\User\Role
55
+     * @return Values\UserSession
56 56
      */
57 57
     public function parse(array $data, ParsingDispatcher $parsingDispatcher)
58 58
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/IntegrationTestRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
      * @param \eZ\Publish\Core\REST\Common\Input\Dispatcher $inputDispatcher
55 55
      * @param \eZ\Publish\Core\REST\Common\Output\Visitor $outputVisitor
56 56
      * @param \eZ\Publish\SPI\FieldType\FieldType[] $fieldTypes
57
-     * @param \eZ\Publish\Core\REST\Client\HttpClient\Authentication\IntegrationTestAuthentication $authenticator
57
+     * @param IntegrationTestAuthenticator $authenticator
58 58
      */
59 59
     public function __construct(HttpClient $client, Dispatcher $inputDispatcher, Visitor $outputVisitor, RequestParser $requestParser, array $fieldTypes, IntegrationTestAuthenticator $authenticator)
60 60
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/IOService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      *
129 129
      * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
130 130
      *
131
-     * @param string $binaryFileid
131
+     * @param string $binaryFileId
132 132
      *
133 133
      * @return \eZ\Publish\Core\IO\Values\BinaryFile
134 134
      */
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/LocationService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
      * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
216 216
      * @param \eZ\Publish\API\Repository\Values\Content\Location $rootLocation
217 217
      *
218
-     * @return \eZ\Publish\API\Repository\Values\Content\Location[]
218
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
219 219
      */
220 220
     public function loadLocations(ContentInfo $contentInfo, Location $rootLocation = null)
221 221
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/ObjectStateService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
      *
135 135
      * @todo Implement offset & limit
136 136
      *
137
-     * @return \eZ\Publish\API\Repository\Values\ObjectState\ObjectStateGroup[]
137
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
138 138
      */
139 139
     public function loadObjectStateGroups($offset = 0, $limit = -1)
140 140
     {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      *
155 155
      * @param \eZ\Publish\API\Repository\Values\ObjectState\ObjectStateGroup $objectStateGroup
156 156
      *
157
-     * @return \eZ\Publish\API\Repository\Values\ObjectState\ObjectState[]
157
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
158 158
      */
159 159
     public function loadObjectStates(ObjectStateGroup $objectStateGroup)
160 160
     {
Please login to merge, or discard this patch.
Core/REST/Client/Output/ValueObjectVisitor/FieldDefinitionCreateStruct.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
     protected $fieldTypeSerializer;
28 28
 
29 29
     /**
30
-     * @param \eZ\Publish\Core\REST\Common\RequestParser $requestParser
31 30
      * @param \eZ\Publish\Core\REST\Common\Output\FieldTypeSerializer $fieldTypeSerializer
32 31
      */
33 32
     public function __construct(FieldTypeSerializer $fieldTypeSerializer)
Please login to merge, or discard this patch.