Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuugg committed Oct 31, 2023
1 parent 285f3ee commit 44890cd
Show file tree
Hide file tree
Showing 125 changed files with 125 additions and 125 deletions.
2 changes: 1 addition & 1 deletion src/aop/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# !!! 不能生产使用,仅作为研究用途

一款简单Aop实现。支持常驻内存型PHP应用。可以方便接入MaxPHP, Swoole,WebMan等框架。
一款简单Aop实现。支持常驻内存型PHP应用。可以方便接入nextphp, Swoole,WebMan等框架。

# 环境要求

Expand Down
2 changes: 1 addition & 1 deletion src/aop/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next/aop",
"description": "An AOP package that is resident in in-memory PHP frameworks, such as MaxPHP, WebMan.",
"description": "An AOP package that is resident in in-memory PHP frameworks, such as nextphp, WebMan.",
"homepage": "https://github.com/marxphp/aop",
"license": "Apache-2.0",
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/aop/publish/aop.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/AstManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Attribute/AspectConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Collector/AbstractCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Collector/AspectCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Collector/PropertyAttributeCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Contract/AspectInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Contract/CollectorInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Contract/PropertyAttribute.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Exception/PropertyHandleException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/JoinPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/Metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/PropertyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/PropertyHandlerVisitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/ProxyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/aop/src/ProxyHandlerVisitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/Exception/ContainerException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/Exception/NotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/Reflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/src/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/tests/Bar.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/tests/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/tests/ContextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/tests/Foo.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/di/tests/FooInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Config/Attribute/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Console/Attribute/AsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Console/Command/RouteListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Console/Command/stubs/controller.stub
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Console/Command/stubs/middleware.stub
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Console/CommandCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Di/Attribute/Inject.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Event/Attribute/Listen.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Event/ListenerCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Routing/Attribute/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Routing/Attribute/DeleteMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/framework/src/Routing/Attribute/GetMapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading

0 comments on commit 44890cd

Please sign in to comment.