Skip to content

Commit 239f299

Browse files
authored
[Console] Change use statement for Process Helper
1 parent 3d4a077 commit 239f299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/console/helpers/processhelper.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To display process details, use the :class:`Symfony\\Component\\Console\\Helper\
1111
and run your command with verbosity. For example, running the following code with
1212
a very verbose verbosity (e.g. -vv)::
1313

14-
use Symfony\Component\Process\ProcessBuilder;
14+
use Symfony\Component\Process\Process;
1515

1616
$helper = $this->getHelper('process');
1717
$process = new Process(array('figlet', 'Symfony'));
@@ -52,7 +52,7 @@ There are three ways to use the process helper:
5252

5353
* Passing a :class:`Symfony\\Component\\Process\\Process` instance::
5454

55-
use Symfony\Component\Process\ProcessBuilder;
55+
use Symfony\Component\Process\Process;
5656

5757
// ...
5858
$process = new Process(array('figlet', 'Symfony'));

0 commit comments

Comments
 (0)