Skip to content

Commit c6f2bab

Browse files
committed
chore: style changes
1 parent c4ce00a commit c6f2bab

File tree

5 files changed

+0
-10
lines changed

5 files changed

+0
-10
lines changed

src/Mcp/Tools/ApplicationInfo.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Laravel\Boost\Mcp\Tools;
66

7-
use Illuminate\JsonSchema\JsonSchema;
87
use Laravel\Boost\Install\GuidelineAssist;
98
use Laravel\Mcp\Request;
109
use Laravel\Mcp\Response;
@@ -25,7 +24,6 @@ public function __construct(protected Roster $roster, protected GuidelineAssist
2524
*/
2625
protected string $description = 'Get comprehensive application information including PHP version, Laravel version, database engine, all installed packages with their versions, and all Eloquent models in the application. You should use this tool on each new chat, and use the package & version data to write version specific code for the packages that exist.';
2726

28-
2927
/**
3028
* Handle the tool request.
3129
*/

src/Mcp/Tools/DatabaseConnections.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Laravel\Boost\Mcp\Tools;
66

7-
use Illuminate\JsonSchema\JsonSchema;
87
use Laravel\Mcp\Request;
98
use Laravel\Mcp\Response;
109
use Laravel\Mcp\Server\Tool;
@@ -18,7 +17,6 @@ class DatabaseConnections extends Tool
1817
*/
1918
protected string $description = 'List the configured database connection names for this application.';
2019

21-
2220
/**
2321
* Handle the tool request.
2422
*/

src/Mcp/Tools/LastError.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Laravel\Boost\Mcp\Tools;
66

7-
use Illuminate\JsonSchema\JsonSchema;
87
use Illuminate\Log\Events\MessageLogged;
98
use Illuminate\Support\Facades\Cache;
109
use Illuminate\Support\Facades\Log;
@@ -48,7 +47,6 @@ public function __construct()
4847
*/
4948
protected string $description = 'Get details of the last error/exception created in this application on the backend. Use browser-log tool for browser errors.';
5049

51-
5250
/**
5351
* Handle the tool request.
5452
*/

src/Mcp/Tools/ListArtisanCommands.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
namespace Laravel\Boost\Mcp\Tools;
66

77
use Illuminate\Console\Command;
8-
use Illuminate\JsonSchema\JsonSchema;
98
use Illuminate\Support\Facades\Artisan;
109
use Laravel\Mcp\Request;
1110
use Laravel\Mcp\Response;
@@ -20,7 +19,6 @@ class ListArtisanCommands extends Tool
2019
*/
2120
protected string $description = 'List all available Artisan commands registered in this application.';
2221

23-
2422
/**
2523
* Handle the tool request.
2624
*/

src/Mcp/Tools/ListAvailableConfigKeys.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Laravel\Boost\Mcp\Tools;
66

7-
use Illuminate\JsonSchema\JsonSchema;
87
use Illuminate\Support\Facades\Config;
98
use Laravel\Mcp\Request;
109
use Laravel\Mcp\Response;
@@ -19,7 +18,6 @@ class ListAvailableConfigKeys extends Tool
1918
*/
2019
protected string $description = 'List all available Laravel configuration keys (from config/*.php) in dot notation.';
2120

22-
2321
/**
2422
* Handle the tool request.
2523
*/

0 commit comments

Comments
 (0)