refactor: susun semula struktur folder — Laravel source ke src/

This commit is contained in:
Saufi
2026-05-19 15:58:35 +08:00
parent f052251b94
commit bf53c71b45
10806 changed files with 1385379 additions and 121 deletions

30
vendor/laravel/mcp/src/Facades/Mcp.php vendored Normal file
View File

@@ -0,0 +1,30 @@
<?php
declare(strict_types=1);
namespace Laravel\Mcp\Facades;
use Illuminate\Support\Facades\Facade;
use Laravel\Mcp\Server\Registrar;
/**
* @method static \Illuminate\Routing\Route web(string $route, string $serverClass)
* @method static void local(string $handle, string $serverClass)
* @method static callable|null getLocalServer(string $handle)
* @method static \Illuminate\Routing\Route|null getWebServer(string $route)
* @method static array servers()
* @method static void oauthRoutes(string $oauthPrefix = 'oauth')
* @method static array ensureMcpScope()
*
* @see \Laravel\Mcp\Server\Registrar
*/
class Mcp extends Facade
{
/**
* @return class-string<Registrar>
*/
protected static function getFacadeAccessor(): string
{
return Registrar::class;
}
}