mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-29 18:27:44 +08:00
Use Hyperf\Coroutine\Coroutine
instead of Hyperf\Engine\Coroutine
(#6513)
This commit is contained in:
parent
b02ab7bc68
commit
4238efa987
@ -4,6 +4,10 @@
|
||||
|
||||
- [#6509](https://github.com/hyperf/hyperf/pull/6509) Fix the bug that cannot give array type.
|
||||
|
||||
## Optimized
|
||||
|
||||
- [#6513](https://github.com/hyperf/hyperf/pull/6513) Use `Hyperf\Coroutine\Coroutine` instead of `Hyperf\Engine\Coroutine`.
|
||||
|
||||
## Added
|
||||
|
||||
- [#6504](https://github.com/hyperf/hyperf/pull/6504) Added `HostReaderInterface` for `rpc-multiplex`.
|
||||
|
@ -14,8 +14,8 @@ namespace Hyperf\Tracer\Adapter\Reporter;
|
||||
use Closure;
|
||||
use Hyperf\Coordinator\Constants;
|
||||
use Hyperf\Coordinator\CoordinatorManager;
|
||||
use Hyperf\Coroutine\Coroutine;
|
||||
use Hyperf\Engine\Channel;
|
||||
use Hyperf\Engine\Coroutine;
|
||||
use Hyperf\Guzzle\ClientFactory;
|
||||
use RuntimeException;
|
||||
use Throwable;
|
||||
|
@ -14,8 +14,8 @@ namespace Hyperf\Tracer\Adapter\Reporter;
|
||||
use Closure;
|
||||
use Hyperf\Coordinator\Constants;
|
||||
use Hyperf\Coordinator\CoordinatorManager;
|
||||
use Hyperf\Coroutine\Coroutine;
|
||||
use Hyperf\Engine\Channel;
|
||||
use Hyperf\Engine\Coroutine;
|
||||
use Hyperf\Tracer\Exception\ConnectionClosedException;
|
||||
use longlang\phpkafka\Producer\Producer;
|
||||
use longlang\phpkafka\Producer\ProducerConfig;
|
||||
|
@ -11,9 +11,9 @@ declare(strict_types=1);
|
||||
*/
|
||||
namespace Hyperf\Tracer\Aspect;
|
||||
|
||||
use Hyperf\Coroutine\Coroutine as Co;
|
||||
use Hyperf\Di\Aop\AbstractAspect;
|
||||
use Hyperf\Di\Aop\ProceedingJoinPoint;
|
||||
use Hyperf\Engine\Coroutine as Co;
|
||||
use Hyperf\Tracer\SpanTagManager;
|
||||
use Hyperf\Tracer\SwitchManager;
|
||||
use Hyperf\Tracer\TracerContext;
|
||||
|
Loading…
Reference in New Issue
Block a user