Skip to content

Commit

Permalink
phpDoc: Remove list bullets
Browse files Browse the repository at this point in the history
phpDoc description is interpreted as Markdown. Those hyphens were generating one-item unordered lists.
  • Loading branch information
adriendupuis committed Oct 2, 2023
1 parent bc11c0a commit 0a1613c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/contracts/Repository/LocationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ interface LocationService
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\UnauthorizedException If the current user user does not have read access to the whole source subtree
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\InvalidArgumentException if the target location is a sub location of the given location
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Location $subtree - the subtree denoted by the location to copy
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Location $targetParentLocation - the target parent location for the copy operation
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Location $subtree the subtree denoted by the location to copy
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Location $targetParentLocation the target parent location for the copy operation
*
* @return \Ibexa\Contracts\Core\Repository\Values\Content\Location The newly created location of the copied subtree
*/
Expand Down
6 changes: 3 additions & 3 deletions src/contracts/Search/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface Handler
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\InvalidArgumentException if Query criterion is not applicable to its target
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Query $query
* @param array $languageFilter - a map of language related filters specifying languages query will be performed on.
* @param array $languageFilter a map of language related filters specifying languages query will be performed on.
* Also used to define which field languages are loaded for the returned content.
* Currently supports: <code>array("languages" => array(<language1>,..), "useAlwaysAvailable" => bool)</code>
* useAlwaysAvailable defaults to true to avoid exceptions on missing translations
Expand All @@ -41,7 +41,7 @@ public function findContent(Query $query, array $languageFilter = []);
* @throws \Ibexa\Contracts\Core\Repository\Exceptions\InvalidArgumentException if there is more than than one result matching the criterions
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion $filter
* @param array $languageFilter - a map of language related filters specifying languages query will be performed on.
* @param array $languageFilter a map of language related filters specifying languages query will be performed on.
* Also used to define which field languages are loaded for the returned content.
* Currently supports: <code>array("languages" => array(<language1>,..), "useAlwaysAvailable" => bool)</code>
* useAlwaysAvailable defaults to true to avoid exceptions on missing translations
Expand All @@ -54,7 +54,7 @@ public function findSingle(Criterion $filter, array $languageFilter = []);
* Finds locations for the given $query.
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\LocationQuery $query
* @param array $languageFilter - a map of language related filters specifying languages query will be performed on.
* @param array $languageFilter a map of language related filters specifying languages query will be performed on.
* Also used to define which field languages are loaded for the returned content.
* Currently supports: <code>array("languages" => array(<language1>,..), "useAlwaysAvailable" => bool)</code>
* useAlwaysAvailable defaults to true to avoid exceptions on missing translations
Expand Down

0 comments on commit 0a1613c

Please sign in to comment.