Passed
Pull Request — master (#1168)
by Aleksei
18:19 queued 07:51
created
src/Telemetry/src/Bootloader/TelemetryBootloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function __construct(
36 36
         private readonly ConfiguratorInterface $config,
37
-    ) {
37
+    ){
38 38
     }
39 39
 
40 40
     public function init(EnvironmentInterface $env): void
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * @param class-string<TracerFactoryInterface>|TracerFactoryInterface|Autowire $driver
47 47
      */
48
-    public function registerTracer(string $name, string|TracerFactoryInterface|Autowire $driver): void
48
+    public function registerTracer(string $name, string | TracerFactoryInterface | Autowire $driver): void
49 49
     {
50 50
         $this->config->modify(
51 51
             TelemetryConfig::CONFIG,
Please login to merge, or discard this patch.
src/Telemetry/tests/NullTracerTest.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,8 @@
 block discarded – undo
77 77
             ->with(SpanInterface::class);
78 78
         $scope->shouldNotReceive('runScope');
79 79
 
80
-        ContainerScope::runScope($container, function () use ($tracer, $callable) {
80
+        ContainerScope::runScope($container, function () use ($tracer, $callable)
81
+        {
81 82
             $this->assertSame(
82 83
                 'hello',
83 84
                 $tracer->trace('foo', $callable, ['foo' => 'bar'])
Please login to merge, or discard this patch.
src/SendIt/tests/RenderTest.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
     public function defineDirectories(string $root): array
32 32
     {
33 33
         return [
34
-                'root' => __DIR__ . '/App',
35
-                'app'  => __DIR__ . '/App'
34
+                'root' => __DIR__.'/App',
35
+                'app'  => __DIR__.'/App'
36 36
             ] + parent::defineDirectories($root);
37 37
     }
38 38
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     {
41 41
         parent::tearDown();
42 42
 
43
-        foreach (glob(__DIR__ . '/App/runtime/cache/views/*.php') as $file) {
43
+        foreach (glob(__DIR__.'/App/runtime/cache/views/*.php') as $file){
44 44
             @unlink($file);
45 45
         }
46 46
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,8 @@
 block discarded – undo
40 40
     {
41 41
         parent::tearDown();
42 42
 
43
-        foreach (glob(__DIR__ . '/App/runtime/cache/views/*.php') as $file) {
43
+        foreach (glob(__DIR__ . '/App/runtime/cache/views/*.php') as $file)
44
+        {
44 45
             @unlink($file);
45 46
         }
46 47
     }
Please login to merge, or discard this patch.