Skip to content

Commit 25b69bd

Browse files
committed
Remove tailing commas
1 parent 5de907d commit 25b69bd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

contrib/sentry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ static function (&$value) use ($config) {
182182
$response['environment'],
183183
),
184184
);
185-
},
185+
}
186186
);
187187

188188
function getPreviousReleaseRevision()

recipe/prestashop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@
4242
'deploy:prepare',
4343
'deploy:vendors',
4444
'deploy:publish',
45-
],
45+
]
4646
);

vendor/ringcentral/psr7/src/functions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ function copy_to_string(StreamInterface $stream, $maxLen = -1)
351351
function copy_to_stream(
352352
StreamInterface $source,
353353
StreamInterface $dest,
354-
$maxLen = -1,
354+
$maxLen = -1
355355
) {
356356
if ($maxLen === -1) {
357357
while (!$source->eof()) {
@@ -389,7 +389,7 @@ function copy_to_stream(
389389
function hash(
390390
StreamInterface $stream,
391391
$algo,
392-
$rawOutput = false,
392+
$rawOutput = false
393393
) {
394394
$pos = $stream->tell();
395395

0 commit comments

Comments
 (0)