Skip to content

Commit addc3df

Browse files
committed
Update input schema return types to use \Illuminate\JsonSchema\Types\Type
1 parent d8cdd2c commit addc3df

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

src/Mcp/Tools/BrowserLogs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class BrowserLogs extends Tool
2424
/**
2525
* Get the tool's input schema.
2626
*
27-
* @return array<string, JsonSchema>
27+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2828
*/
2929
public function schema(JsonSchema $schema): array
3030
{

src/Mcp/Tools/DatabaseQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DatabaseQuery extends Tool
2323
/**
2424
* Get the tool's input schema.
2525
*
26-
* @return array<string, JsonSchema>
26+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2727
*/
2828
public function schema(JsonSchema $schema): array
2929
{

src/Mcp/Tools/DatabaseSchema.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DatabaseSchema extends Tool
2828
/**
2929
* Get the tool's input schema.
3030
*
31-
* @return array<string, JsonSchema>
31+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
3232
*/
3333
public function schema(JsonSchema $schema): array
3434
{

src/Mcp/Tools/GetAbsoluteUrl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class GetAbsoluteUrl extends Tool
2121
/**
2222
* Get the tool's input schema.
2323
*
24-
* @return array<string, JsonSchema>
24+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2525
*/
2626
public function schema(JsonSchema $schema): array
2727
{

src/Mcp/Tools/GetConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class GetConfig extends Tool
1919
/**
2020
* Get the tool's input schema.
2121
*
22-
* @return array<string, JsonSchema>
22+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2323
*/
2424
public function schema(JsonSchema $schema): array
2525
{

src/Mcp/Tools/ListAvailableEnvVars.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class ListAvailableEnvVars extends Tool
2121
/**
2222
* Get the tool's input schema.
2323
*
24-
* @return array<string, JsonSchema>
24+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2525
*/
2626
public function schema(JsonSchema $schema): array
2727
{

src/Mcp/Tools/ListRoutes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ListRoutes extends Tool
2424
/**
2525
* Get the tool's input schema.
2626
*
27-
* @return array<string, JsonSchema>
27+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2828
*/
2929
public function schema(JsonSchema $schema): array
3030
{

src/Mcp/Tools/ReadLogEntries.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class ReadLogEntries extends Tool
2424
/**
2525
* Get the tool's input schema.
2626
*
27-
* @return array<string, JsonSchema>
27+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2828
*/
2929
public function schema(JsonSchema $schema): array
3030
{

src/Mcp/Tools/ReportFeedback.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ReportFeedback extends Tool
2020
/**
2121
* Get the tool's input schema.
2222
*
23-
* @return array<string, JsonSchema>
23+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
2424
*/
2525
public function schema(JsonSchema $schema): array
2626
{

src/Mcp/Tools/SearchDocs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct(protected Roster $roster) {}
2828
/**
2929
* Get the tool's input schema.
3030
*
31-
* @return array<string, JsonSchema>
31+
* @return array<string, \Illuminate\JsonSchema\Types\Type>
3232
*/
3333
public function schema(JsonSchema $schema): array
3434
{

0 commit comments

Comments
 (0)