Skip to content

Commit

Permalink
ContentService remove bullet list from PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis authored Jun 7, 2024
1 parent 43f959c commit 2772905
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/contracts/Repository/ContentService.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ interface ContentService
* To load fields use loadContent
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user is not allowed to read the content
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if the content with the given id does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the content with the given id does not exist
*
* @param int $contentId
*
Expand All @@ -63,7 +63,7 @@ public function loadContentInfoList(array $contentIds): iterable;
* To load fields use loadContent
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user is not allowed to read the content
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if the content with the given remote id does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the content with the given remote id does not exist
*
* @param string $remoteId
*
Expand All @@ -76,7 +76,7 @@ public function loadContentInfoByRemoteId(string $remoteId): ContentInfo;
*
* If no version number is given, the method returns the current version
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if the version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user is not allowed to load this version
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\ContentInfo $contentInfo
Expand All @@ -91,7 +91,7 @@ public function loadVersionInfo(ContentInfo $contentInfo, ?int $versionNo = null
*
* If no version number is given, the method returns the current version
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if the version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user is not allowed to load this version
*
* @param int $contentId
Expand Down Expand Up @@ -119,7 +119,7 @@ public function loadVersionInfoListByContentInfo(array $contentInfoList): array;
*
* If no version number is given, the method returns the current version
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if version with the given number does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user is not allowed to load this version
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\ContentInfo $contentInfo
Expand Down Expand Up @@ -152,7 +152,7 @@ public function loadContentByVersionInfo(VersionInfo $versionInfo, array $langua
* If no version number is given, the method returns the current version
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the content or version with the given id and languages does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException If the user has no access to read content and in case of un-published content: read versions
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user has no access to read content and in case of un-published content: read versions
*
* @param mixed $contentId
* @param string[] $languages A language priority, filters returned fields and is used as prioritized language code on
Expand All @@ -169,8 +169,8 @@ public function loadContent(int $contentId, array $languages = null, ?int $versi
*
* If no version is given, the method returns the current version
*
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException - if the content or version with the given remote id does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException If the user has no access to read content and in case of un-published content: read versions
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\NotFoundException if the content or version with the given remote id does not exist
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException if the user has no access to read content and in case of un-published content: read versions
*
* @param string $remoteId
* @param string[] $languages A language priority, filters returned fields and is used as prioritized language code on
Expand Down

0 comments on commit 2772905

Please sign in to comment.