Skip to content

Commit 517b70b

Browse files
committed
Apply fixes from StyleCI
1 parent c937866 commit 517b70b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/Console/Commands/MaintenanceRrdStep.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,12 @@ private function modifyXml(string $xmlContent, int $step, int $heartbeat): strin
130130
* @param string $hostname
131131
* @param RrdProcess $rrdProcess
132132
* @return string[]
133+
*
133134
* @throws RrdException
134135
*/
135136
private function listFiles(string $hostname, RrdProcess $rrdProcess): array
136137
{
137-
$command= $hostname === 'all' ? ['list -r .', ''] : "list ./$hostname";
138+
$command = $hostname === 'all' ? ['list -r .', ''] : "list ./$hostname";
138139
$output = rtrim($rrdProcess->run($command));
139140

140141
if (empty($output)) {

0 commit comments

Comments
 (0)