Passed
Push — master ( 81d966...4376d2 )
by butschster
23:34 queued 15s
created
src/Framework/Exceptions/Reporter/StorageReporter.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 StorageSnapshot $storageSnapshot,
14
-    ) {
14
+    ){
15 15
     }
16 16
 
17 17
     public function report(\Throwable $exception): void
Please login to merge, or discard this patch.
src/Framework/Snapshots/StorageSnapshooter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct(
10 10
         private readonly StorageSnapshot $storageSnapshot
11
-    ) {
11
+    ){
12 12
     }
13 13
 
14 14
     public function register(\Throwable $e): SnapshotInterface
Please login to merge, or discard this patch.
src/Framework/Bootloader/StorageSnapshotsBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     {
34 34
         $bucket = $env->get('SNAPSHOTS_BUCKET');
35 35
 
36
-        if ($bucket === null) {
36
+        if ($bucket === null){
37 37
             throw new \RuntimeException(
38 38
                 'Please, configure a bucket for storing snapshots using the environment variable `SNAPSHOTS_BUCKET`.'
39 39
             );
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,8 @@
 block discarded – undo
33 33
     {
34 34
         $bucket = $env->get('SNAPSHOTS_BUCKET');
35 35
 
36
-        if ($bucket === null) {
36
+        if ($bucket === null)
37
+        {
37 38
             throw new \RuntimeException(
38 39
                 'Please, configure a bucket for storing snapshots using the environment variable `SNAPSHOTS_BUCKET`.'
39 40
             );
Please login to merge, or discard this patch.
src/Snapshots/src/StorageSnapshot.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         protected readonly Verbosity $verbosity,
17 17
         protected readonly ExceptionRendererInterface $renderer,
18 18
         protected readonly ?string $directory = null
19
-    ) {
19
+    ){
20 20
     }
21 21
 
22 22
     public function create(\Throwable $e): SnapshotInterface
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
         $this->storage
36 36
             ->bucket($this->bucket)
37
-            ->create($this->directory !== null ? $this->directory . DIRECTORY_SEPARATOR . $filename : $filename)
37
+            ->create($this->directory !== null ? $this->directory.DIRECTORY_SEPARATOR.$filename : $filename)
38 38
             ->write($this->renderer->render($snapshot->getException(), $this->verbosity));
39 39
     }
40 40
 
Please login to merge, or discard this patch.