Skip to content

Commit 6b00cae

Browse files
jskorlolgithub-actions[bot]
authored andcommitted
Fix styling
1 parent fbb6cfc commit 6b00cae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Server/Request/ToolsCallHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function execute(string $method, ?array $params = null): array
2929
}
3030

3131
$tool = $this->toolRepository->getTool($name);
32-
if (!$tool) {
32+
if (! $tool) {
3333
throw new JsonRpcErrorException(message: "Tool '{$name}' not found", code: JsonRpcErrorCode::METHOD_NOT_FOUND);
3434
}
3535

src/Transports/SseTransport.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public function initialize(): void
9797
private function sendEvent(string $event, string $data): void
9898
{
9999
// 헤더 설정이 이미 전송되었는지 확인
100-
if (!headers_sent()) {
100+
if (! headers_sent()) {
101101
// 버퍼링 비활성화
102102
ini_set('output_buffering', 'off');
103103
ini_set('zlib.output_compression', false);
@@ -146,7 +146,7 @@ public function send(string|array $message): void
146146
*/
147147
public function close(): void
148148
{
149-
if (!$this->connected) {
149+
if (! $this->connected) {
150150
return;
151151
}
152152

0 commit comments

Comments
 (0)