Skip to content

Commit 10de9b3

Browse files
committed
Change variable name in example
1 parent f7fd6ec commit 10de9b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
->withPassword('password')
1212
->connect();
1313

14-
$output = $connection->run('ls -lah');
14+
$command = $connection->run('ls -lah');
1515

16-
var_dump($output->getOutput());
17-
var_dump($output->getError());
16+
var_dump($command->getOutput());
17+
var_dump($command->getError());

0 commit comments

Comments
 (0)