Skip to content

Commit 9e82d22

Browse files
committed
fmt
1 parent af3bf31 commit 9e82d22

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

src/ProcessRunner/ProcessRunner.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
use Symfony\Component\Process\Exception\ProcessFailedException;
1919
use Symfony\Component\Process\Exception\ProcessTimedOutException;
2020
use Symfony\Component\Process\Process;
21+
2122
use function Deployer\Support\deployer_root;
2223
use function Deployer\Support\env_stringify;
2324
use function Deployer\Support\replace_secrets;
@@ -36,7 +37,7 @@ public function run(Host $host, string $command, RunParams $params): string
3637
$this->logger->command($host, 'run', $command);
3738

3839
$terminalOutput = $this->logger->callback($host, $params->forceOutput);
39-
$callback = function ($type, $buffer) use ($host, $terminalOutput) {
40+
$callback = function ($type, $buffer) use ($terminalOutput) {
4041
$terminalOutput($type, $buffer);
4142
};
4243

src/Ssh/SshClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
use Symfony\Component\Console\Output\OutputInterface;
1818
use Symfony\Component\Process\Exception\ProcessTimedOutException;
1919
use Symfony\Component\Process\Process;
20+
2021
use function Deployer\Support\env_stringify;
2122
use function Deployer\Support\replace_secrets;
2223

src/Utility/Rsync.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
use Symfony\Component\Console\Output\OutputInterface;
1818
use Symfony\Component\Process\Exception\ProcessFailedException;
1919
use Symfony\Component\Process\Process;
20+
2021
use function Deployer\writeln;
2122

2223
class Rsync

0 commit comments

Comments
 (0)