Skip to content

Commit

Permalink
ContentTagInterface: Fix PhpDoc @see tag usage
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis committed Dec 18, 2023
1 parent a6b294f commit 9a37b3d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/contracts/Handler/ContentTagInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface ContentTagInterface
/**
* Low level tag method to add content tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $contentIds
*/
Expand All @@ -31,7 +31,7 @@ public function addContentTags(array $contentIds);
/**
* Low level tag method to add location tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $locationIds
*/
Expand All @@ -40,7 +40,7 @@ public function addLocationTags(array $locationIds);
/**
* Low level tag method to add parent location tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $parentLocationIds
*/
Expand All @@ -49,7 +49,7 @@ public function addParentLocationTags(array $parentLocationIds);
/**
* Low level tag method to add location path tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $locationIds
*/
Expand All @@ -58,7 +58,7 @@ public function addPathTags(array $locationIds);
/**
* Low level tag method to add relation tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $contentIds
*/
Expand All @@ -67,7 +67,7 @@ public function addRelationTags(array $contentIds);
/**
* Low level tag method to add relation location tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $locationIds
*/
Expand All @@ -76,7 +76,7 @@ public function addRelationLocationTags(array $locationIds);
/**
* Low level tag method to add relation location tag.
*
* @see "docs/using_tags.md"
* @see https://github.com/ibexa/http-cache/blob/main/docs/using_tags.md
*
* @param array $contentTypeIds
*/
Expand Down

0 comments on commit 9a37b3d

Please sign in to comment.