Skip to content

Commit 63d288a

Browse files
authored
Apply fixes from StyleCI (#119)
1 parent 4b847e1 commit 63d288a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Endpoints/Comments.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ public function __construct(Notion $notion)
4141
* Retrieve a list of comments
4242
* url: https://api.notion.com/{version}/comments?block_id=* [get]
4343
* notion-api-docs: https://developers.notion.com/reference/retrieve-a-comment.
44-
* @param string $blockId
4544
*
45+
* @param string $blockId
4646
* @return CommentCollection
4747
*
4848
* @throws HandlingException
@@ -51,7 +51,7 @@ public function __construct(Notion $notion)
5151
public function ofBlock(string $blockId): CommentCollection
5252
{
5353
$response = $this->get(
54-
$this->url(Endpoint::COMMENTS . "?block_id={$blockId}&{$this->buildPaginationQuery()}")
54+
$this->url(Endpoint::COMMENTS."?block_id={$blockId}&{$this->buildPaginationQuery()}")
5555
);
5656

5757
return new CommentCollection($response->json());
@@ -91,8 +91,8 @@ public function onPage(string $pageId): self
9191
* Create a comment
9292
* url: https://api.notion.com/{version}/comments [post]
9393
* notion-api-docs: https://developers.notion.com/reference/create-a-comment.
94-
* @param CommentEntity $comment
9594
*
95+
* @param CommentEntity $comment
9696
* @return CommentEntity
9797
*
9898
* @throws HandlingException

0 commit comments

Comments
 (0)