Test Failed
Push — master ( ba03f2...dee2b3 )
by Mostafa
58s queued 15s
created
src/DTOs/Style/AudioStyle.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@  discard block
 block discarded – undo
10 10
 
11 11
 class AudioStyle extends Style
12 12
 {
13
-    public readonly Mp3|Aac|Wav|Flac $format;
13
+    public readonly Mp3 | Aac | Wav | Flac $format;
14 14
 
15 15
 
16
-    public function __construct(string $name, Mp3|Aac|Wav|Flac $format = new Mp3)
16
+    public function __construct(string $name, Mp3 | Aac | Wav | Flac $format = new Mp3)
17 17
     {
18 18
         parent::__construct($name);
19 19
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 
22 22
     }
23 23
 
24
-    public static function make(string $name, Mp3|Aac|Wav|Flac $format = new Mp3): self
24
+    public static function make(string $name, Mp3 | Aac | Wav | Flac $format = new Mp3): self
25 25
     {
26 26
         return new self($name, $format);
27 27
     }
Please login to merge, or discard this patch.
src/Concerns/Storage/UploadEntity/UploadEntityStyle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         return $this;
86 86
     }
87 87
 
88
-    public function audio(string $name, Mp3|Aac|Wav|Flac $format = new Mp3): UploadEntities
88
+    public function audio(string $name, Mp3 | Aac | Wav | Flac $format = new Mp3): UploadEntities
89 89
     {
90 90
         $this->audioStyles[$name] = AudioStyle::make($name, $format);
91 91
 
Please login to merge, or discard this patch.