From 239f299bc04a24044a037e39ede9cb50999730a0 Mon Sep 17 00:00:00 2001 From: Kristian Zondervan Date: Sat, 24 Mar 2018 10:26:55 +0100 Subject: [PATCH] [Console] Change use statement for Process Helper --- components/console/helpers/processhelper.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/console/helpers/processhelper.rst b/components/console/helpers/processhelper.rst index f5f6475f1cd..7fa01ab884c 100644 --- a/components/console/helpers/processhelper.rst +++ b/components/console/helpers/processhelper.rst @@ -11,7 +11,7 @@ To display process details, use the :class:`Symfony\\Component\\Console\\Helper\ and run your command with verbosity. For example, running the following code with a very verbose verbosity (e.g. -vv):: - use Symfony\Component\Process\ProcessBuilder; + use Symfony\Component\Process\Process; $helper = $this->getHelper('process'); $process = new Process(array('figlet', 'Symfony')); @@ -52,7 +52,7 @@ There are three ways to use the process helper: * Passing a :class:`Symfony\\Component\\Process\\Process` instance:: - use Symfony\Component\Process\ProcessBuilder; + use Symfony\Component\Process\Process; // ... $process = new Process(array('figlet', 'Symfony'));