Passed
Pull Request — master (#96)
by Maximilian
03:08
created
src/Response/Directives/GameEngine/Pattern.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\GameEngine;
6 6
 
7
-class Pattern
8
-{
7
+class Pattern {
9 8
     public const ACTION_DOWN = 'down';
10 9
     public const ACTION_UP = 'up';
11 10
     public const ACTION_SILENCE = 'silence';
Please login to merge, or discard this patch.
src/Response/Directives/GameEngine/RecognizerDeviation.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\GameEngine;
6 6
 
7
-class RecognizerDeviation extends Recognizer
8
-{
7
+class RecognizerDeviation extends Recognizer {
9 8
     public const TYPE = 'deviation';
10 9
 
11 10
     public ?string $recognizer = null;
Please login to merge, or discard this patch.
src/Response/Directives/GameEngine/RecognizerMatch.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\GameEngine;
6 6
 
7
-class RecognizerMatch extends Recognizer
8
-{
7
+class RecognizerMatch extends Recognizer {
9 8
     public const TYPE = 'match';
10 9
     public const ANCHOR_START = 'start';
11 10
     public const ANCHOR_END = 'end';
Please login to merge, or discard this patch.
src/Response/Directives/GameEngine/StartInputHandlerDirective.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 
7 7
 use MaxBeckers\AmazonAlexa\Response\Directives\Directive;
8 8
 
9
-class StartInputHandlerDirective extends Directive
10
-{
9
+class StartInputHandlerDirective extends Directive {
11 10
     public const TYPE = 'GameEngine.StartInputHandler';
12 11
 
13 12
     public ?int $timeout = null;
Please login to merge, or discard this patch.
src/Response/Directives/VideoApp/Metadata.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\VideoApp;
6 6
 
7
-class Metadata
8
-{
7
+class Metadata {
9 8
     public ?string $title = null;
10 9
     public ?string $subtitle = null;
11 10
 
Please login to merge, or discard this patch.
src/Response/Directives/VideoApp/VideoLaunchDirective.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 
7 7
 use MaxBeckers\AmazonAlexa\Response\Directives\Directive;
8 8
 
9
-class VideoLaunchDirective extends Directive
10
-{
9
+class VideoLaunchDirective extends Directive {
11 10
     public const TYPE = 'VideoApp.Launch';
12 11
 
13 12
     public ?VideoItem $videoItem = null;
Please login to merge, or discard this patch.
src/Response/Directives/VideoApp/VideoItem.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\VideoApp;
6 6
 
7
-class VideoItem
8
-{
7
+class VideoItem {
9 8
     public ?string $source = null;
10 9
     public ?Metadata $metadata = null;
11 10
 
Please login to merge, or discard this patch.
src/Response/Directives/GadgetController/SetLightDirective.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,7 @@
 block discarded – undo
6 6
 
7 7
 use MaxBeckers\AmazonAlexa\Response\Directives\Directive;
8 8
 
9
-class SetLightDirective extends Directive
10
-{
9
+class SetLightDirective extends Directive {
11 10
     public const TYPE = 'GadgetController.SetLight';
12 11
 
13 12
     public ?int $version = null;
Please login to merge, or discard this patch.
src/Response/Directives/GadgetController/Sequence.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace MaxBeckers\AmazonAlexa\Response\Directives\GadgetController;
6 6
 
7
-class Sequence
8
-{
7
+class Sequence {
9 8
     public ?int $durationMs = null;
10 9
     public ?bool $blend = null;
11 10
     public ?string $color = null;
Please login to merge, or discard this patch.