@@ -13,20 +13,20 @@ |
||
| 13 | 13 | { |
| 14 | 14 | public function __construct( |
| 15 | 15 | private readonly ContainerInterface $container, |
| 16 | - ) {} |
|
| 16 | + ){} |
|
| 17 | 17 | |
| 18 | 18 | /** |
| 19 | 19 | * @psalm-suppress InvalidReturnType |
| 20 | 20 | * @psalm-suppress InvalidReturnStatement |
| 21 | 21 | */ |
| 22 | - public function __invoke(LogRecord|array $record): array|LogRecord |
|
| 22 | + public function __invoke(LogRecord | array $record): array | LogRecord |
|
| 23 | 23 | { |
| 24 | 24 | $tracer = $this->container->get(TracerInterface::class); |
| 25 | 25 | \assert($tracer instanceof TracerInterface); |
| 26 | 26 | |
| 27 | 27 | $context = $tracer->getContext(); |
| 28 | 28 | |
| 29 | - if (!empty($context)) { |
|
| 29 | + if (!empty($context)){ |
|
| 30 | 30 | $record['extra']['telemetry'] = $context; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -13,7 +13,8 @@ discard block |
||
| 13 | 13 | { |
| 14 | 14 | public function __construct( |
| 15 | 15 | private readonly ContainerInterface $container, |
| 16 | - ) {} |
|
| 16 | + ) { |
|
| 17 | +} |
|
| 17 | 18 | |
| 18 | 19 | /** |
| 19 | 20 | * @psalm-suppress InvalidReturnType |
@@ -26,7 +27,8 @@ discard block |
||
| 26 | 27 | |
| 27 | 28 | $context = $tracer->getContext(); |
| 28 | 29 | |
| 29 | - if (!empty($context)) { |
|
| 30 | + if (!empty($context)) |
|
| 31 | + { |
|
| 30 | 32 | $record['extra']['telemetry'] = $context; |
| 31 | 33 | } |
| 32 | 34 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | public function __construct( |
| 22 | 22 | private readonly ?ScopeInterface $scope = new Container(), |
| 23 | - ) {} |
|
| 23 | + ){} |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * @throws \Throwable |
@@ -28,43 +28,43 @@ discard block |
||
| 28 | 28 | final protected function runScope(SpanInterface $span, callable $callback): mixed |
| 29 | 29 | { |
| 30 | 30 | $container = ContainerScope::getContainer(); |
| 31 | - if ($container === null) { |
|
| 31 | + if ($container === null){ |
|
| 32 | 32 | return $this->scope->runScope([ |
| 33 | 33 | SpanInterface::class => $span, |
| 34 | 34 | TracerInterface::class => $this, |
| 35 | 35 | ], static fn(InvokerInterface $invoker): mixed => $invoker->invoke($callback)); |
| 36 | 36 | } |
| 37 | 37 | |
| 38 | - if ($container instanceof Container) { |
|
| 38 | + if ($container instanceof Container){ |
|
| 39 | 39 | $invoker = $container; |
| 40 | 40 | $binder = $container; |
| 41 | - } else { |
|
| 41 | + }else{ |
|
| 42 | 42 | /** @var InvokerInterface $invoker */ |
| 43 | 43 | $invoker = $container->get(InvokerInterface::class); |
| 44 | 44 | /** @var BinderInterface $binder */ |
| 45 | 45 | $binder = $container->get(BinderInterface::class); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - try { |
|
| 48 | + try{ |
|
| 49 | 49 | $prevSpan = $container->get(SpanInterface::class); |
| 50 | - } catch (\Throwable) { |
|
| 50 | + }catch (\Throwable){ |
|
| 51 | 51 | $prevSpan = null; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | $binder->bindSingleton(SpanInterface::class, $span); |
| 55 | 55 | |
| 56 | - try { |
|
| 56 | + try{ |
|
| 57 | 57 | return $prevSpan === null |
| 58 | 58 | ? $this->scope->runScope( |
| 59 | 59 | new Scope( |
| 60 | - bindings: [ |
|
| 60 | + bindings : [ |
|
| 61 | 61 | TracerInterface::class => $this, |
| 62 | 62 | ], |
| 63 | 63 | ), |
| 64 | - static fn(): mixed => $invoker->invoke($callback), |
|
| 64 | + static fn() : mixed => $invoker->invoke($callback), |
|
| 65 | 65 | ) |
| 66 | 66 | : $invoker->invoke($callback); |
| 67 | - } finally { |
|
| 67 | + }finally{ |
|
| 68 | 68 | $prevSpan === null |
| 69 | 69 | ? $binder->removeBinding(SpanInterface::class) |
| 70 | 70 | : $binder->bindSingleton(SpanInterface::class, $prevSpan); |
@@ -20,7 +20,8 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | public function __construct( |
| 22 | 22 | private readonly ?ScopeInterface $scope = new Container(), |
| 23 | - ) {} |
|
| 23 | + ) { |
|
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | /** |
| 26 | 27 | * @throws \Throwable |
@@ -28,32 +29,40 @@ discard block |
||
| 28 | 29 | final protected function runScope(SpanInterface $span, callable $callback): mixed |
| 29 | 30 | { |
| 30 | 31 | $container = ContainerScope::getContainer(); |
| 31 | - if ($container === null) { |
|
| 32 | + if ($container === null) |
|
| 33 | + { |
|
| 32 | 34 | return $this->scope->runScope([ |
| 33 | 35 | SpanInterface::class => $span, |
| 34 | 36 | TracerInterface::class => $this, |
| 35 | 37 | ], static fn(InvokerInterface $invoker): mixed => $invoker->invoke($callback)); |
| 36 | 38 | } |
| 37 | 39 | |
| 38 | - if ($container instanceof Container) { |
|
| 40 | + if ($container instanceof Container) |
|
| 41 | + { |
|
| 39 | 42 | $invoker = $container; |
| 40 | 43 | $binder = $container; |
| 41 | - } else { |
|
| 44 | + } |
|
| 45 | + else |
|
| 46 | + { |
|
| 42 | 47 | /** @var InvokerInterface $invoker */ |
| 43 | 48 | $invoker = $container->get(InvokerInterface::class); |
| 44 | 49 | /** @var BinderInterface $binder */ |
| 45 | 50 | $binder = $container->get(BinderInterface::class); |
| 46 | 51 | } |
| 47 | 52 | |
| 48 | - try { |
|
| 53 | + try |
|
| 54 | + { |
|
| 49 | 55 | $prevSpan = $container->get(SpanInterface::class); |
| 50 | - } catch (\Throwable) { |
|
| 56 | + } |
|
| 57 | + catch (\Throwable) |
|
| 58 | + { |
|
| 51 | 59 | $prevSpan = null; |
| 52 | 60 | } |
| 53 | 61 | |
| 54 | 62 | $binder->bindSingleton(SpanInterface::class, $span); |
| 55 | 63 | |
| 56 | - try { |
|
| 64 | + try |
|
| 65 | + { |
|
| 57 | 66 | return $prevSpan === null |
| 58 | 67 | ? $this->scope->runScope( |
| 59 | 68 | new Scope( |
@@ -64,7 +73,9 @@ discard block |
||
| 64 | 73 | static fn(): mixed => $invoker->invoke($callback), |
| 65 | 74 | ) |
| 66 | 75 | : $invoker->invoke($callback); |
| 67 | - } finally { |
|
| 76 | + } |
|
| 77 | + finally |
|
| 78 | + { |
|
| 68 | 79 | $prevSpan === null |
| 69 | 80 | ? $binder->removeBinding(SpanInterface::class) |
| 70 | 81 | : $binder->bindSingleton(SpanInterface::class, $prevSpan); |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | |
| 51 | 51 | $result = $tracer->trace( |
| 52 | 52 | 'foo', |
| 53 | - static function (ContainerInterface $container) { |
|
| 53 | + static function (ContainerInterface $container){ |
|
| 54 | 54 | /** @var TracerInterface $tracer */ |
| 55 | 55 | $tracer = $container->get(TracerInterface::class); |
| 56 | 56 | |
@@ -50,7 +50,8 @@ |
||
| 50 | 50 | |
| 51 | 51 | $result = $tracer->trace( |
| 52 | 52 | 'foo', |
| 53 | - static function (ContainerInterface $container) { |
|
| 53 | + static function (ContainerInterface $container) |
|
| 54 | + { |
|
| 54 | 55 | /** @var TracerInterface $tracer */ |
| 55 | 56 | $tracer = $container->get(TracerInterface::class); |
| 56 | 57 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | public function __construct( |
| 35 | 35 | private readonly ConfiguratorInterface $config, |
| 36 | - ) {} |
|
| 36 | + ){} |
|
| 37 | 37 | |
| 38 | 38 | public function init(BinderInterface $binder, EnvironmentInterface $env): void |
| 39 | 39 | { |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | /** |
| 51 | 51 | * @param class-string<TracerFactoryInterface>|TracerFactoryInterface|Autowire $driver |
| 52 | 52 | */ |
| 53 | - public function registerTracer(string $name, string|TracerFactoryInterface|Autowire $driver): void |
|
| 53 | + public function registerTracer(string $name, string | TracerFactoryInterface | Autowire $driver): void |
|
| 54 | 54 | { |
| 55 | 55 | $this->config->modify( |
| 56 | 56 | TelemetryConfig::CONFIG, |
@@ -33,7 +33,8 @@ |
||
| 33 | 33 | |
| 34 | 34 | public function __construct( |
| 35 | 35 | private readonly ConfiguratorInterface $config, |
| 36 | - ) {} |
|
| 36 | + ) { |
|
| 37 | +} |
|
| 37 | 38 | |
| 38 | 39 | public function init(BinderInterface $binder, EnvironmentInterface $env): void |
| 39 | 40 | { |