@@ -11,7 +11,6 @@ |
||
| 11 | 11 | namespace eZ\Bundle\EzPublishRestBundle\Tests\Functional; |
| 12 | 12 | |
| 13 | 13 | use eZ\Bundle\EzPublishRestBundle\Tests\Functional\TestCase as RESTFunctionalTestCase; |
| 14 | -use eZ\Publish\API\Repository\Values\User\Limitation; |
|
| 15 | 14 | |
| 16 | 15 | class RoleTest extends RESTFunctionalTestCase |
| 17 | 16 | { |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | * |
| 28 | 28 | * @param \eZ\Publish\SPI\Search\Field $field |
| 29 | 29 | * |
| 30 | - * @return mixed |
|
| 30 | + * @return boolean |
|
| 31 | 31 | */ |
| 32 | 32 | public function canMap(Field $field) |
| 33 | 33 | { |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | * |
| 40 | 40 | * @param \eZ\Publish\SPI\Search\Field $field |
| 41 | 41 | * |
| 42 | - * @return mixed |
|
| 42 | + * @return string |
|
| 43 | 43 | */ |
| 44 | 44 | public function map(Field $field) |
| 45 | 45 | { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | * |
| 39 | 39 | * @param \eZ\Publish\SPI\Search\Field $field |
| 40 | 40 | * |
| 41 | - * @return mixed |
|
| 41 | + * @return string |
|
| 42 | 42 | */ |
| 43 | 43 | public function map(Field $field) |
| 44 | 44 | { |
@@ -37,7 +37,7 @@ |
||
| 37 | 37 | * |
| 38 | 38 | * @param \eZ\Publish\SPI\Search\Field $field |
| 39 | 39 | * |
| 40 | - * @return mixed|null Returns null on empty value |
|
| 40 | + * @return null|string Returns null on empty value |
|
| 41 | 41 | */ |
| 42 | 42 | public function map(Field $field) |
| 43 | 43 | { |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | * |
| 39 | 39 | * @param \eZ\Publish\SPI\Search\Field $field |
| 40 | 40 | * |
| 41 | - * @return mixed |
|
| 41 | + * @return string |
|
| 42 | 42 | */ |
| 43 | 43 | public function map(Field $field) |
| 44 | 44 | { |
@@ -14,7 +14,6 @@ |
||
| 14 | 14 | use eZ\Publish\Core\Search\Legacy\Content\FullTextData; |
| 15 | 15 | use eZ\Publish\SPI\Persistence\Content; |
| 16 | 16 | use eZ\Publish\SPI\Persistence\Content\Type\Handler as SPITypeHandler; |
| 17 | -use eZ\Publish\SPI\Search\Field; |
|
| 18 | 17 | |
| 19 | 18 | /** |
| 20 | 19 | * WordIndexer gateway implementation using the Doctrine database. |
@@ -184,7 +184,7 @@ |
||
| 184 | 184 | * Ported from the legacy code |
| 185 | 185 | * @see https://github.com/ezsystems/ezpublish-legacy/blob/master/kernel/search/plugins/ezsearchengine/ezsearchengine.php#L386 |
| 186 | 186 | * |
| 187 | - * @param mixed $contentId |
|
| 187 | + * @param integer $contentId |
|
| 188 | 188 | * @param mixed|null $versionId |
| 189 | 189 | * |
| 190 | 190 | * @return bool |
@@ -127,15 +127,15 @@ |
||
| 127 | 127 | * Link word with specific content object (legacy db table: ezsearch_object_word_link). |
| 128 | 128 | * |
| 129 | 129 | * @param $wordId |
| 130 | - * @param $contentId |
|
| 131 | - * @param $frequency |
|
| 132 | - * @param $placement |
|
| 130 | + * @param integer $contentId |
|
| 131 | + * @param integer $frequency |
|
| 132 | + * @param integer $placement |
|
| 133 | 133 | * @param $nextWordId |
| 134 | 134 | * @param $prevWordId |
| 135 | - * @param $contentTypeId |
|
| 135 | + * @param integer $contentTypeId |
|
| 136 | 136 | * @param $fieldTypeId |
| 137 | - * @param $published |
|
| 138 | - * @param $sectionId |
|
| 137 | + * @param integer $published |
|
| 138 | + * @param integer $sectionId |
|
| 139 | 139 | * @param $identifier |
| 140 | 140 | * @param $integerValue |
| 141 | 141 | */ |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | * |
| 27 | 27 | * @param \eZ\Publish\Core\REST\Common\Output\Visitor $visitor |
| 28 | 28 | * @param \eZ\Publish\Core\REST\Common\Output\Generator $generator |
| 29 | - * @param Role|RoleDraft $data |
|
| 29 | + * @param \eZ\Publish\Core\REST\Server\Values\RestRole $data |
|
| 30 | 30 | */ |
| 31 | 31 | public function visit(Visitor $visitor, Generator $generator, $data) |
| 32 | 32 | { |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * |
| 142 | 142 | * @param $groupPath |
| 143 | 143 | * |
| 144 | - * @return \eZ\Publish\Core\REST\Server\Values\RestUserGroup |
|
| 144 | + * @return Values\CachedValue |
|
| 145 | 145 | */ |
| 146 | 146 | public function loadUserGroup($groupPath) |
| 147 | 147 | { |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | * |
| 179 | 179 | * @param $userId |
| 180 | 180 | * |
| 181 | - * @return \eZ\Publish\Core\REST\Server\Values\RestUser |
|
| 181 | + * @return Values\CachedValue |
|
| 182 | 182 | */ |
| 183 | 183 | public function loadUser($userId) |
| 184 | 184 | { |
@@ -711,7 +711,7 @@ discard block |
||
| 711 | 711 | * |
| 712 | 712 | * @param $groupPath |
| 713 | 713 | * |
| 714 | - * @return \eZ\Publish\Core\REST\Server\Values\UserGroupList|\eZ\Publish\Core\REST\Server\Values\UserGroupRefList |
|
| 714 | + * @return Values\CachedValue |
|
| 715 | 715 | */ |
| 716 | 716 | public function loadSubUserGroups($groupPath, Request $request) |
| 717 | 717 | { |
@@ -767,7 +767,7 @@ discard block |
||
| 767 | 767 | * |
| 768 | 768 | * @param $userId |
| 769 | 769 | * |
| 770 | - * @return \eZ\Publish\Core\REST\Server\Values\UserGroupRefList |
|
| 770 | + * @return Values\CachedValue |
|
| 771 | 771 | */ |
| 772 | 772 | public function loadUserGroupsOfUser($userId, Request $request) |
| 773 | 773 | { |
@@ -807,7 +807,7 @@ discard block |
||
| 807 | 807 | * |
| 808 | 808 | * @param $groupPath |
| 809 | 809 | * |
| 810 | - * @return \eZ\Publish\Core\REST\Server\Values\UserList|\eZ\Publish\Core\REST\Server\Values\UserRefList |
|
| 810 | + * @return Values\CachedValue |
|
| 811 | 811 | */ |
| 812 | 812 | public function loadUsersFromGroup($groupPath, Request $request) |
| 813 | 813 | { |