@@ -18,7 +18,7 @@ You can install the component in many different ways:
18
18
Usage
19
19
-----
20
20
21
- The ` :class:Symfony\\Component\\Process\\Process ` class allows you to execute
21
+ The :class: ` Symfony\\ Component\\ Process\\ Process ` class allows you to execute
22
22
a command in a sub-process::
23
23
24
24
use Symfony\Component\Process\Process;
@@ -32,14 +32,14 @@ a command in a sub-process::
32
32
33
33
print $process->getOutput();
34
34
35
- The `` :method:: Symfony\\Component\\Process\\Process:run() ` ` method takes care
35
+ The :method: ` Symfony\\ Component\\ Process\\ Process:: run ` method takes care
36
36
of the subtle differences between the different platforms when executing the
37
37
command.
38
38
39
39
When executing a long running command (like rsync-ing files to a remote
40
40
server), you can give feedback to the end user in real-time by passing an
41
41
anonymous function to the
42
- `` :method:: Symfony\\Component\\Process\\Process:run() ` ` method::
42
+ :method: ` Symfony\\ Component\\ Process\\ Process:: run ` method::
43
43
44
44
use Symfony\Component\Process\Process;
45
45
@@ -66,7 +66,7 @@ instead::
66
66
The ``ProcessBuilder `` class has been as of 2.1.
67
67
68
68
To make your code work better on all platforms, you might want to use the
69
- `` :class:Symfony\Component\Process\ProcessBuilder ` ` class instead::
69
+ :class: ` Symfony\\ Component\\ Process\\ ProcessBuilder ` class instead::
70
70
71
71
use Symfony\Component\Process\ProcessBuilder;
72
72
0 commit comments