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

PHPCBF fixes.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-06-11 10:39:07 -05:00
parent c90d5bdf50
commit 2f14e98543
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E

View File

@ -1124,12 +1124,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);