@@ -11,7 +11,7 @@ |
||
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; |
@@ -21,7 +21,7 @@ |
||
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 |
@@ -12,7 +12,7 @@ |
||
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 | } |