Completed
Push — EZP-30548-Romanian_special_cha... ( 0c1631...56a243 )
by
unknown
19:32
created
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.
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.
eZ/Publish/Core/REST/Client/Repository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
      * @param \eZ\Publish\API\Repository\Values\ValueObject $object The object to check if the user has access to
189 189
      * @param mixed $targets The location, parent or "assignment" value object, or an array of the same
190 190
      *
191
-     * @return bool
191
+     * @return boolean|null
192 192
      */
193 193
     public function canUser($module, $function, ValueObject $object, $targets = null)
194 194
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/RoleService.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
      *
559 559
      * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read the roles
560 560
      *
561
-     * @return \eZ\Publish\API\Repository\Values\User\Role[]
561
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
562 562
      */
563 563
     public function loadRoles()
564 564
     {
@@ -606,7 +606,7 @@  discard block
 block discarded – undo
606 606
      *
607 607
      * @param mixed $userId
608 608
      *
609
-     * @return \eZ\Publish\API\Repository\Values\User\Policy[]
609
+     * @return \eZ\Publish\API\Repository\Values\ValueObject
610 610
      */
611 611
     public function loadPoliciesByUserId($userId)
612 612
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/SectionService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -170,7 +170,7 @@
 block discarded – undo
170 170
      *
171 171
      * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If the current user user is not allowed to read a section
172 172
      *
173
-     * @return array of {@link \eZ\Publish\API\Repository\Values\Content\Section}
173
+     * @return \eZ\Publish\API\Repository\Values\ValueObject of {@link \eZ\Publish\API\Repository\Values\Content\Section}
174 174
      */
175 175
     public function loadSections()
176 176
     {
Please login to merge, or discard this patch.
eZ/Publish/Core/REST/Client/Tests/IdManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      * @param string $type
45 45
      * @param mixed $rawId
46 46
      *
47
-     * @return mixed
47
+     * @return string
48 48
      */
49 49
     public function generateId($type, $rawId)
50 50
     {
Please login to merge, or discard this patch.