4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 05:06:37 +00:00

PHPCS fixes.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-06-04 18:06:26 -05:00
parent 55013e5091
commit 155c56a605
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E

View File

@ -1069,12 +1069,12 @@ class ConfigWriter implements EventSubscriberInterface
}
$lsConfig[] = 'hls_streams = [' . implode(
', ',
array_map(
static fn($row) => '("' . $row . '", ' . $row . ')',
$hlsStreams
)
) . ']';
', ',
array_map(
static fn($row) => '("' . $row . '", ' . $row . ')',
$hlsStreams
)
) . ']';
$event->appendLines($lsConfig);