File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ It comes with the following features:
21
21
* Displays the stack trace of a deprecation on-demand;
22
22
23
23
* Provides a ``ClockMock ``, ``DnsMock `` and ``ClassExistsMock `` classes for tests
24
- sensitive to time, network or class existence.
24
+ sensitive to time, network or class existence;
25
25
26
26
* Provides a modified version of PHPUnit that allows 1. separating the
27
27
dependencies of your app from those of phpunit to prevent any unwanted
28
28
constraints to apply; 2. running tests in parallel when a test suite is split
29
- in several phpunit.xml files; 3. recording and replaying skipped tests.
29
+ in several phpunit.xml files; 3. recording and replaying skipped tests;
30
30
31
31
Installation
32
32
------------
Original file line number Diff line number Diff line change @@ -358,10 +358,10 @@ double bracket notation. You can use a placeholder in order to have a
358
358
process that can only be changed with the values and without changing
359
359
the PHP code::
360
360
361
- use Symfony\Component\Process\Process;
361
+ use Symfony\Component\Process\Process;
362
362
363
- $process = Process::fromShellCommandline('echo "$name"');
364
- $process->run(null, ['name' => 'Elsa']);
363
+ $process = Process::fromShellCommandline('echo "$name"');
364
+ $process->run(null, ['name' => 'Elsa']);
365
365
366
366
.. caution ::
367
367
Original file line number Diff line number Diff line change 22
22
23
23
The following example shows the component in action::
24
24
25
- use Symfony\Component\WebLink\HttpHeaderSerializer;
26
25
use Symfony\Component\WebLink\GenericLinkProvider;
26
+ use Symfony\Component\WebLink\HttpHeaderSerializer;
27
27
use Symfony\Component\WebLink\Link;
28
28
29
29
$linkProvider = (new GenericLinkProvider())
You can’t perform that action at this time.
0 commit comments