Skip to content

Small fixes #12206

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions components/process.rst
Original file line number Diff line number Diff line change
Expand Up @@ -358,10 +358,10 @@ double bracket notation. You can use a placeholder in order to have a
process that can only be changed with the values and without changing
the PHP code::

use Symfony\Component\Process\Process;
use Symfony\Component\Process\Process;

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

.. caution::

Expand Down
2 changes: 1 addition & 1 deletion components/web_link.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Usage

The following example shows the component in action::

use Symfony\Component\WebLink\HttpHeaderSerializer;
use Symfony\Component\WebLink\GenericLinkProvider;
use Symfony\Component\WebLink\HttpHeaderSerializer;
use Symfony\Component\WebLink\Link;

$linkProvider = (new GenericLinkProvider())
Expand Down