Skip to content

Commit 5cb129e

Browse files
committed
minor #12206 Small fixes (OskarStark)
This PR was squashed before being merged into the 4.4 branch (closes #12206). Discussion ---------- Small fixes <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 3f6efd6 Small fixes
2 parents 2584959 + 3f6efd6 commit 5cb129e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/process.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,10 +358,10 @@ double bracket notation. You can use a placeholder in order to have a
358358
process that can only be changed with the values and without changing
359359
the PHP code::
360360

361-
use Symfony\Component\Process\Process;
361+
use Symfony\Component\Process\Process;
362362

363-
$process = Process::fromShellCommandline('echo "$name"');
364-
$process->run(null, ['name' => 'Elsa']);
363+
$process = Process::fromShellCommandline('echo "$name"');
364+
$process->run(null, ['name' => 'Elsa']);
365365

366366
.. caution::
367367

components/web_link.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Usage
2222

2323
The following example shows the component in action::
2424

25-
use Symfony\Component\WebLink\HttpHeaderSerializer;
2625
use Symfony\Component\WebLink\GenericLinkProvider;
26+
use Symfony\Component\WebLink\HttpHeaderSerializer;
2727
use Symfony\Component\WebLink\Link;
2828

2929
$linkProvider = (new GenericLinkProvider())

0 commit comments

Comments
 (0)