From 492a5eadc7f7a1d432eba85de22a3f6c9539ea3e Mon Sep 17 00:00:00 2001 From: chengyao Date: Tue, 31 Oct 2023 10:23:52 +0800 Subject: [PATCH] update doc --- src/Contract/ResponseEmitterInterface.php | 2 +- src/Contract/RouteDispatcherInterface.php | 2 +- src/Event/OnRequest.php | 2 +- src/Exception/CSRFException.php | 2 +- src/Kernel.php | 2 +- src/Middleware/CORSMiddleware.php | 2 +- src/Middleware/RoutingMiddleware.php | 2 +- src/Middleware/VerifyCSRFToken.php | 2 +- src/RequestHandler.php | 2 +- src/ResponseEmitter/FPMResponseEmitter.php | 2 +- src/ResponseEmitter/SwooleResponseEmitter.php | 2 +- src/ResponseEmitter/WorkerManResponseEmitter.php | 2 +- src/RouteDispatcher.php | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/Contract/ResponseEmitterInterface.php b/src/Contract/ResponseEmitterInterface.php index 828768f..cbb95ed 100644 --- a/src/Contract/ResponseEmitterInterface.php +++ b/src/Contract/ResponseEmitterInterface.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Contract/RouteDispatcherInterface.php b/src/Contract/RouteDispatcherInterface.php index b3c8645..a9eb14e 100644 --- a/src/Contract/RouteDispatcherInterface.php +++ b/src/Contract/RouteDispatcherInterface.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Event/OnRequest.php b/src/Event/OnRequest.php index 5b0572b..c4d9708 100644 --- a/src/Event/OnRequest.php +++ b/src/Event/OnRequest.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Exception/CSRFException.php b/src/Exception/CSRFException.php index 5eb6066..be91f6b 100755 --- a/src/Exception/CSRFException.php +++ b/src/Exception/CSRFException.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Kernel.php b/src/Kernel.php index 0bebf9f..6181800 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Middleware/CORSMiddleware.php b/src/Middleware/CORSMiddleware.php index a6250b1..5cf3c2d 100644 --- a/src/Middleware/CORSMiddleware.php +++ b/src/Middleware/CORSMiddleware.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Middleware/RoutingMiddleware.php b/src/Middleware/RoutingMiddleware.php index 84b2c14..37d5956 100644 --- a/src/Middleware/RoutingMiddleware.php +++ b/src/Middleware/RoutingMiddleware.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/Middleware/VerifyCSRFToken.php b/src/Middleware/VerifyCSRFToken.php index a30227e..19cbe15 100644 --- a/src/Middleware/VerifyCSRFToken.php +++ b/src/Middleware/VerifyCSRFToken.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/RequestHandler.php b/src/RequestHandler.php index 94f1608..426b7c1 100644 --- a/src/RequestHandler.php +++ b/src/RequestHandler.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/ResponseEmitter/FPMResponseEmitter.php b/src/ResponseEmitter/FPMResponseEmitter.php index dbe321b..4422aca 100644 --- a/src/ResponseEmitter/FPMResponseEmitter.php +++ b/src/ResponseEmitter/FPMResponseEmitter.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/ResponseEmitter/SwooleResponseEmitter.php b/src/ResponseEmitter/SwooleResponseEmitter.php index 04fe386..beef420 100644 --- a/src/ResponseEmitter/SwooleResponseEmitter.php +++ b/src/ResponseEmitter/SwooleResponseEmitter.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/ResponseEmitter/WorkerManResponseEmitter.php b/src/ResponseEmitter/WorkerManResponseEmitter.php index 8b13b6e..8223bf7 100644 --- a/src/ResponseEmitter/WorkerManResponseEmitter.php +++ b/src/ResponseEmitter/WorkerManResponseEmitter.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE diff --git a/src/RouteDispatcher.php b/src/RouteDispatcher.php index b3eb756..22da833 100644 --- a/src/RouteDispatcher.php +++ b/src/RouteDispatcher.php @@ -3,7 +3,7 @@ declare(strict_types=1); /** - * This file is part of MaxPHP. + * This file is part of nextphp. * * @link https://github.com/marxphp * @license https://github.com/next-laboratory/next/blob/master/LICENSE