Passed
Pull Request — master (#97)
by Maximilian
04:17
created
src/Request/Request/PlaybackController/PauseCommandIssued.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         ?string $locale = null,
23 23
     ) {
24 24
         parent::__construct(
25
-            type: self::TYPE,
26
-            timestamp: $timestamp,
27
-            requestId: $requestId,
28
-            locale: $locale
25
+            type : self::TYPE,
26
+            timestamp : $timestamp,
27
+            requestId : $requestId,
28
+            locale : $locale
29 29
         );
30 30
     }
31 31
 
Please login to merge, or discard this patch.
src/Request/Request/PlaybackController/AbstractPlaybackController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
         public ?string $requestId = null,
21 21
         public ?string $locale = null,
22 22
     ) {
23
-        parent::__construct(type: $type, timestamp: $timestamp);
23
+        parent::__construct(type : $type, timestamp : $timestamp);
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
src/Request/Request/AudioPlayer/PlaybackFailedRequest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
         public ?PlaybackState $currentPlaybackState = null,
30 30
     ) {
31 31
         parent::__construct(
32
-            type: self::TYPE,
33
-            timestamp: $timestamp,
34
-            token: $token,
35
-            requestId: $requestId,
36
-            locale: $locale
32
+            type : self::TYPE,
33
+            timestamp : $timestamp,
34
+            token : $token,
35
+            requestId : $requestId,
36
+            locale : $locale
37 37
         );
38 38
     }
39 39
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             requestId: PropertyHelper::checkNullValueString($amazonRequest, 'requestId'),
46 46
             locale: PropertyHelper::checkNullValueString($amazonRequest, 'locale'),
47 47
             error: isset($amazonRequest['error']) ? Error::fromAmazonRequest($amazonRequest['error']) : null,
48
-            currentPlaybackState: isset($amazonRequest['currentPlaybackState']) ? PlaybackState::fromAmazonRequest($amazonRequest['currentPlaybackState']) : null,
48
+            currentPlaybackState : isset($amazonRequest['currentPlaybackState']) ? PlaybackState::fromAmazonRequest($amazonRequest['currentPlaybackState']) : null,
49 49
         );
50 50
     }
51 51
 }
Please login to merge, or discard this patch.
src/Request/Request/AudioPlayer/PlaybackStoppedRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
         public ?int $offsetInMilliseconds = null,
27 27
     ) {
28 28
         parent::__construct(
29
-            type: self::TYPE,
30
-            timestamp: $timestamp,
31
-            token: $token,
32
-            requestId: $requestId,
33
-            locale: $locale
29
+            type : self::TYPE,
30
+            timestamp : $timestamp,
31
+            token : $token,
32
+            requestId : $requestId,
33
+            locale : $locale
34 34
         );
35 35
     }
36 36
 
Please login to merge, or discard this patch.
src/Request/Request/AlexaSkillEvent/SkillEnabledRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
         ?string $requestId = null,
25 25
     ) {
26 26
         parent::__construct(
27
-            type: self::TYPE,
28
-            timestamp: $timestamp,
29
-            eventCreationTime: $eventCreationTime,
30
-            eventPublishingTime: $eventPublishingTime,
31
-            requestId: $requestId
27
+            type : self::TYPE,
28
+            timestamp : $timestamp,
29
+            eventCreationTime : $eventCreationTime,
30
+            eventPublishingTime : $eventPublishingTime,
31
+            requestId : $requestId
32 32
         );
33 33
     }
34 34
 
Please login to merge, or discard this patch.
src/Request/Request/AlexaSkillEvent/AlexaSkillEventRequest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
         public ?\DateTime $eventPublishingTime = null,
23 23
         public ?string $requestId = null,
24 24
     ) {
25
-        parent::__construct(type: $type, timestamp: $timestamp);
25
+        parent::__construct(type : $type, timestamp : $timestamp);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Request/Request/AlexaSkillEvent/SkillDisabledBody.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public static function fromAmazonRequest(array $amazonRequest): self
23 23
     {
24 24
         return new self(
25
-            userInformationPersistenceStatus: PropertyHelper::checkNullValueString($amazonRequest, 'userInformationPersistenceStatus'),
25
+            userInformationPersistenceStatus : PropertyHelper::checkNullValueString($amazonRequest, 'userInformationPersistenceStatus'),
26 26
         );
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Request/Request/AlexaSkillEvent/Permission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     public static function fromAmazonRequest(array $amazonRequest): self
20 20
     {
21 21
         return new self(
22
-            scope: PropertyHelper::checkNullValueString($amazonRequest, 'scope'),
22
+            scope : PropertyHelper::checkNullValueString($amazonRequest, 'scope'),
23 23
         );
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
src/Request/Request/AlexaSkillEvent/SkillDisabledRequest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
         public ?SkillDisabledBody $body = null,
27 27
     ) {
28 28
         parent::__construct(
29
-            type: self::TYPE,
30
-            timestamp: $timestamp,
31
-            eventCreationTime: $eventCreationTime,
32
-            eventPublishingTime: $eventPublishingTime,
33
-            requestId: $requestId
29
+            type : self::TYPE,
30
+            timestamp : $timestamp,
31
+            eventCreationTime : $eventCreationTime,
32
+            eventPublishingTime : $eventPublishingTime,
33
+            requestId : $requestId
34 34
         );
35 35
     }
36 36
 
Please login to merge, or discard this patch.