Skip to content

Commit f548a5d

Browse files
klapaudiusgithub-actions[bot]
authored andcommitted
Fix styling
1 parent e4de994 commit f548a5d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Services/ToolService/Annotation/ToolAnnotation.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class ToolAnnotation
66
{
77
/**
8-
* @var string A human-readable title for the tool, useful for UI display
8+
* @var string A human-readable title for the tool, useful for UI display
99
*/
1010
private string $title;
1111

@@ -35,8 +35,7 @@ public function __construct(
3535
?bool $destructiveHint = null,
3636
?bool $idempotentHint = null,
3737
?bool $openWorldHint = null
38-
)
39-
{
38+
) {
4039
$this->title = $title ?? '-';
4140
$this->readOnlyHint = $readOnlyHint ?? false;
4241
$this->destructiveHint = $destructiveHint ?? true;

tests/Services/ToolService/ToolRepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public function test_get_tool_schemas_includes_annotations_if_present(): void
251251
'readOnlyHint' => false,
252252
'destructiveHint' => true,
253253
'idempotentHint' => false,
254-
'openWorldHint' => true
254+
'openWorldHint' => true,
255255
], $schemas[0]['annotations']);
256256
}
257257
}

0 commit comments

Comments
 (0)