Test Failed
Pull Request — master (#1190)
by butschster
10:27
created
src/Core/src/Exception/Resolver/InvalidArgumentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     public function __construct(
14 14
         \ReflectionFunctionAbstract $reflection,
15 15
         private readonly string $parameter
16
-    ) {
16
+    ){
17 17
         $pattern = "Invalid argument value type for the `$parameter` parameter when validating arguments for `%s`.";
18 18
         parent::__construct($this->renderFunctionAndParameter($reflection, $pattern));
19 19
     }
Please login to merge, or discard this patch.
src/Core/src/Internal/Tracer.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function __toString(): string
20 20
     {
21
-        return $this->traces === [] ? '' : "Container trace list:\n" . $this->renderTraceList($this->traces);
21
+        return $this->traces === [] ? '' : "Container trace list:\n".$this->renderTraceList($this->traces);
22 22
     }
23 23
 
24 24
     /**
@@ -34,19 +34,19 @@  discard block
 block discarded – undo
34 34
     public function push(bool $nextLevel, mixed ...$details): void
35 35
     {
36 36
         $trace = $details === [] ? null : new Trace($details);
37
-        if ($nextLevel || $this->traces === []) {
37
+        if ($nextLevel || $this->traces === []){
38 38
             $this->traces[] = $trace === null ? [] : [$trace];
39
-        } elseif ($trace !== null) {
39
+        } elseif ($trace !== null){
40 40
             $this->traces[\array_key_last($this->traces)][] = $trace;
41 41
         }
42 42
     }
43 43
 
44 44
     public function pop(bool $previousLevel = false): void
45 45
     {
46
-        if ($this->traces === []) {
46
+        if ($this->traces === []){
47 47
             return;
48 48
         }
49
-        if ($previousLevel) {
49
+        if ($previousLevel){
50 50
             \array_pop($this->traces);
51 51
             return;
52 52
         }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $result = [];
69 69
         $i = 0;
70
-        foreach ($blocks as $block) {
70
+        foreach ($blocks as $block){
71 71
             \array_push($result, ...$this->blockToStringList($block, $i++));
72 72
         }
73 73
         return \implode("\n", $result);
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
         // Separator
88 88
         $s = "\n";
89 89
         $nexPrefix = "$s$padding  ";
90
-        foreach ($items as $item) {
91
-            $result[] = $firstPrefix . \str_replace($s, $nexPrefix, (string)$item);
90
+        foreach ($items as $item){
91
+            $result[] = $firstPrefix.\str_replace($s, $nexPrefix, (string)$item);
92 92
         }
93 93
         return $result;
94 94
     }
Please login to merge, or discard this patch.
Braces   +13 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,19 +34,24 @@  discard block
 block discarded – undo
34 34
     public function push(bool $nextLevel, mixed ...$details): void
35 35
     {
36 36
         $trace = $details === [] ? null : new Trace($details);
37
-        if ($nextLevel || $this->traces === []) {
37
+        if ($nextLevel || $this->traces === [])
38
+        {
38 39
             $this->traces[] = $trace === null ? [] : [$trace];
39
-        } elseif ($trace !== null) {
40
+        }
41
+        elseif ($trace !== null)
42
+        {
40 43
             $this->traces[\array_key_last($this->traces)][] = $trace;
41 44
         }
42 45
     }
43 46
 
44 47
     public function pop(bool $previousLevel = false): void
45 48
     {
46
-        if ($this->traces === []) {
49
+        if ($this->traces === [])
50
+        {
47 51
             return;
48 52
         }
49
-        if ($previousLevel) {
53
+        if ($previousLevel)
54
+        {
50 55
             \array_pop($this->traces);
51 56
             return;
52 57
         }
@@ -67,7 +72,8 @@  discard block
 block discarded – undo
67 72
     {
68 73
         $result = [];
69 74
         $i = 0;
70
-        foreach ($blocks as $block) {
75
+        foreach ($blocks as $block)
76
+        {
71 77
             \array_push($result, ...$this->blockToStringList($block, $i++));
72 78
         }
73 79
         return \implode("\n", $result);
@@ -87,7 +93,8 @@  discard block
 block discarded – undo
87 93
         // Separator
88 94
         $s = "\n";
89 95
         $nexPrefix = "$s$padding  ";
90
-        foreach ($items as $item) {
96
+        foreach ($items as $item)
97
+        {
91 98
             $result[] = $firstPrefix . \str_replace($s, $nexPrefix, (string)$item);
92 99
         }
93 100
         return $result;
Please login to merge, or discard this patch.
src/Telemetry/src/ConfigTracerFactoryProvider.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@  discard block
 block discarded – undo
16 16
     public function __construct(
17 17
         private readonly TelemetryConfig $config,
18 18
         private readonly FactoryInterface $factory
19
-    ) {
19
+    ){
20 20
     }
21 21
 
22 22
     public function getTracerFactory(?string $name = null): TracerFactoryInterface
23 23
     {
24 24
         $name ??= $this->config->getDefaultDriver();
25 25
 
26
-        if (isset($this->drivers[$name])) {
26
+        if (isset($this->drivers[$name])){
27 27
             return $this->drivers[$name];
28 28
         }
29 29
 
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $config = $this->config->getDriverConfig($name);
36 36
 
37
-        if ($config instanceof TracerFactoryInterface) {
37
+        if ($config instanceof TracerFactoryInterface){
38 38
             return $config;
39 39
         }
40 40
 
41
-        if ($config instanceof Autowire) {
41
+        if ($config instanceof Autowire){
42 42
             return $config->resolve($this->factory);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,8 @@  discard block
 block discarded – undo
23 23
     {
24 24
         $name ??= $this->config->getDefaultDriver();
25 25
 
26
-        if (isset($this->drivers[$name])) {
26
+        if (isset($this->drivers[$name]))
27
+        {
27 28
             return $this->drivers[$name];
28 29
         }
29 30
 
@@ -34,11 +35,13 @@  discard block
 block discarded – undo
34 35
     {
35 36
         $config = $this->config->getDriverConfig($name);
36 37
 
37
-        if ($config instanceof TracerFactoryInterface) {
38
+        if ($config instanceof TracerFactoryInterface)
39
+        {
38 40
             return $config;
39 41
         }
40 42
 
41
-        if ($config instanceof Autowire) {
43
+        if ($config instanceof Autowire)
44
+        {
42 45
             return $config->resolve($this->factory);
43 46
         }
44 47
 
Please login to merge, or discard this patch.
src/Telemetry/src/Config/TelemetryConfig.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function getDefaultDriver(): string
27 27
     {
28
-        if (!\is_string($this->config['default'])) {
28
+        if (!\is_string($this->config['default'])){
29 29
             throw new InvalidArgumentException('Default trace driver config value must be a string');
30 30
         }
31 31
 
@@ -37,9 +37,9 @@  discard block
 block discarded – undo
37 37
      * @return class-string<TracerFactoryInterface>|Autowire|TracerFactoryInterface
38 38
      * @throws InvalidArgumentException
39 39
      */
40
-    public function getDriverConfig(string $name): string|Autowire|TracerFactoryInterface
40
+    public function getDriverConfig(string $name): string | Autowire | TracerFactoryInterface
41 41
     {
42
-        if (!isset($this->config['drivers'][$name])) {
42
+        if (!isset($this->config['drivers'][$name])){
43 43
             throw new InvalidArgumentException(
44 44
                 \sprintf('Config for telemetry driver `%s` is not defined.', $name)
45 45
             );
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
 
48 48
         $driver = $this->config['drivers'][$name];
49 49
 
50
-        if ($driver instanceof TracerFactoryInterface) {
50
+        if ($driver instanceof TracerFactoryInterface){
51 51
             return $driver;
52 52
         }
53 53
 
54
-        if (!\is_string($driver) && !$driver instanceof Autowire) {
54
+        if (!\is_string($driver) && !$driver instanceof Autowire){
55 55
             throw new InvalidArgumentException(
56 56
                 \sprintf('Trace type value for `%s` must be a string or %s', $name, Autowire::class)
57 57
             );
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,7 +25,8 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function getDefaultDriver(): string
27 27
     {
28
-        if (!\is_string($this->config['default'])) {
28
+        if (!\is_string($this->config['default']))
29
+        {
29 30
             throw new InvalidArgumentException('Default trace driver config value must be a string');
30 31
         }
31 32
 
@@ -39,7 +40,8 @@  discard block
 block discarded – undo
39 40
      */
40 41
     public function getDriverConfig(string $name): string|Autowire|TracerFactoryInterface
41 42
     {
42
-        if (!isset($this->config['drivers'][$name])) {
43
+        if (!isset($this->config['drivers'][$name]))
44
+        {
43 45
             throw new InvalidArgumentException(
44 46
                 \sprintf('Config for telemetry driver `%s` is not defined.', $name)
45 47
             );
@@ -47,11 +49,13 @@  discard block
 block discarded – undo
47 49
 
48 50
         $driver = $this->config['drivers'][$name];
49 51
 
50
-        if ($driver instanceof TracerFactoryInterface) {
52
+        if ($driver instanceof TracerFactoryInterface)
53
+        {
51 54
             return $driver;
52 55
         }
53 56
 
54
-        if (!\is_string($driver) && !$driver instanceof Autowire) {
57
+        if (!\is_string($driver) && !$driver instanceof Autowire)
58
+        {
55 59
             throw new InvalidArgumentException(
56 60
                 \sprintf('Trace type value for `%s` must be a string or %s', $name, Autowire::class)
57 61
             );
Please login to merge, or discard this patch.
src/Telemetry/src/LogTracerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         private readonly ClockInterface $clock,
20 20
         LogsInterface $logs,
21 21
         string $channel = self::LOG_CHANNEL
22
-    ) {
22
+    ){
23 23
         $this->logger = $logs->getLogger($channel);
24 24
     }
25 25
 
Please login to merge, or discard this patch.
src/Telemetry/src/Span/Status.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
      * @param non-empty-string|null $description
12 12
      */
13 13
     public function __construct(
14
-        public readonly string|int $code,
14
+        public readonly string | int $code,
15 15
         public readonly ?string $description = null
16
-    ) {
16
+    ){
17 17
     }
18 18
 }
Please login to merge, or discard this patch.
src/Telemetry/src/NullTracerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function __construct(
13 13
         private readonly ?ScopeInterface $scope = new Container(),
14
-    ) {
14
+    ){
15 15
     }
16 16
 
17 17
     public function make(array $context = []): TracerInterface
Please login to merge, or discard this patch.
src/Telemetry/src/LogTracer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         private readonly ClockInterface $clock,
24 24
         private readonly LoggerInterface $logger,
25 25
         private readonly UuidFactoryInterface $uuidFactory
26
-    ) {
26
+    ){
27 27
         parent::__construct($scope);
28 28
     }
29 29
 
Please login to merge, or discard this patch.
src/Queue/tests/Interceptor/Consume/HandlerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $tracerFactory->shouldReceive('make')
23 23
             ->once()
24 24
             ->with(['some' => 'data'])
25
-            ->andReturn( $tracer = new NullTracer());
25
+            ->andReturn($tracer = new NullTracer());
26 26
 
27 27
         $handler = new Handler(
28 28
             core: $core = m::mock(CoreInterface::class),
Please login to merge, or discard this patch.