Test Failed
Pull Request — master (#96)
by Maximilian
17:24
created
src/Response/ResponseBody.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
     use SerializeValueMapper;
13 13
 
14
-    public OutputSpeech|string|null $outputSpeech = null;
14
+    public OutputSpeech | string | null $outputSpeech = null;
15 15
     public ?Card $card = null;
16 16
     public ?Reprompt $reprompt = null;
17 17
     public ?bool $shouldEndSession = null;
Please login to merge, or discard this patch.
src/Request/Request/AbstractRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         return true;
22 22
     }
23 23
 
24
-    protected function setTime(string $attribute, string|int|null $value): void
24
+    protected function setTime(string $attribute, string | int | null $value): void
25 25
     {
26 26
         if ($value !== null) {
27 27
             // Workaround for amazon developer console sending unix timestamp
Please login to merge, or discard this patch.
test/Test/Helper/SsmlGeneratorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 {
13 13
     public static function getVoices(): array
14 14
     {
15
-        return array_map(function (string $item): array {
15
+        return array_map(function(string $item): array {
16 16
             return [$item];
17 17
         }, SsmlGenerator::VOICES);
18 18
     }
Please login to merge, or discard this patch.