8000 minor #7984 Fix typo (haruair) · symfony/symfony-docs@15aa68a · GitHub
[go: up one dir, main page]

Skip to content

Commit 15aa68a

Browse files
committed
minor #7984 Fix typo (haruair)
This PR was merged into the 3.3 branch. Discussion ---------- Fix typo Commits ------- 45f1bad Fix typo
2 parents db4d197 + 45f1bad commit 15aa68a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

service_container/service_locators.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ to handle their respective command when it is asked for::
2929

3030
public function handle(Command $command)
3131
{
32-
$commandClass = get_class($command)
32+
$commandClass = get_class($command);
3333

3434
if (!isset($this->handlerMap[$commandClass])) {
3535
return;
@@ -59,7 +59,7 @@ handlers could be to inject the whole dependency injection container::
5959

6060
public function handle(Command $command)
6161
{
62-
$commandClass = get_class($command)
62+
$commandClass = get_class($command);
6363

6464
if ($this->container->has($commandClass)) {
6565
$handler = $this->container->get($commandClass);

0 commit comments

Comments
 (0)
0