Skip to content

Commit

Permalink
Update BlueskyPrivateMessage.php
Browse files Browse the repository at this point in the history
  • Loading branch information
puklipo committed Nov 25, 2024
1 parent e36a312 commit e49a5ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Notifications/BlueskyPrivateMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function __construct(string $text = '', ?array $facets = null)
*
* $builder = TextBuilder::make(text: 'test')
* ->newLine()
* ->link(text: 'https://', uri: 'https://');
* ->link(text: 'https://');
*
* $message = BlueskyPrivateMessage::create(text: $builder->text, facets: $builder->facets);
* ```
Expand All @@ -70,7 +70,7 @@ public static function create(string $text = '', ?array $facets = null): self
* $message = BlueskyPrivateMessage::build(function (TextBuilder $builder) {
* $builder->text('test')
* ->newLine()
* ->tag(text: '#bluesky', tag: 'bluesky');
* ->tag(text: '#bluesky');
* });
* ```
*
Expand Down

0 comments on commit e49a5ce

Please sign in to comment.