Skip to content

Commit ae93538

Browse files
petersuhmgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent ebf6417 commit ae93538

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/AiAssistantServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Laravel\AiAssistant;
44

5-
use Laravel\AiAssistant\Mcp\AiAssistant;
65
use Illuminate\Support\Facades\Route;
76
use Illuminate\Support\ServiceProvider;
7+
use Laravel\AiAssistant\Mcp\AiAssistant;
88
use Laravel\Mcp\Facades\Mcp;
99

1010
class AiAssistantServiceProvider extends ServiceProvider

src/Mcp/Tools/LogReader.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Laravel\AiAssistant\Mcp\Tools;
44

5+
use Generator;
56
use Laravel\Mcp\Tools\Tool;
67
use Laravel\Mcp\Tools\ToolInputSchema;
78
use Laravel\Mcp\Tools\ToolResponse;
8-
use Generator;
99

1010
class LogReader extends Tool
1111
{
@@ -39,8 +39,6 @@ public function schema(ToolInputSchema $schema): ToolInputSchema
3939

4040
/**
4141
* Execute the tool call.
42-
*
43-
* @return ToolResponse|Generator
4442
*/
4543
public function handle(array $arguments): ToolResponse|Generator
4644
{
@@ -70,8 +68,6 @@ public function handle(array $arguments): ToolResponse|Generator
7068
* Efficiently read the last N lines from a file handle.
7169
*
7270
* @param resource $handle
73-
* @param int $lines
74-
* @return string
7571
*/
7672
protected function tail($handle, int $lines): string
7773
{

0 commit comments

Comments
 (0)