Skip to content

Commit 2cf2965

Browse files
author
Jonathan Visser
committed
Fix PHP CS error for missing commas
1 parent ff46919 commit 2cf2965

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

contrib/tideways.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ static function () {
4646
'description' => null,
4747
'environment' => null,
4848
'service' => null,
49-
'compareAfterMinutes' => 90
49+
'compareAfterMinutes' => 90,
5050
];
5151

5252
$config = array_merge($defaultConfig, (array) get('tideways'));
@@ -84,7 +84,7 @@ static function (&$value) use ($config) {
8484
'type' => $config['type'],
8585
'environment' => $config['environment'],
8686
'service' => $config['service'],
87-
'compareAfterMinutes' => $config['compareAfterMinutes']
87+
'compareAfterMinutes' => $config['compareAfterMinutes'],
8888
],
8989
);
9090

@@ -96,7 +96,7 @@ static function (&$value) use ($config) {
9696
if (!isset($response['ok'], $response['id']) || $response['ok'] !== true) {
9797
throw new \RuntimeException(sprintf('Unable to create a release: %s', print_r($response, true)));
9898
}
99-
99+
100100
writeln(
101101
sprintf(
102102
'<info>Tideways:</info> Release of version <comment>%s</comment> '

0 commit comments

Comments
 (0)