8000 Fix typo · richard4339/symfony-docs@45f1bad · GitHub
[go: up one dir, main page]

Skip to content

Commit 45f1bad

Browse files
authored
Fix typo
1 parent f89e2d0 commit 45f1bad

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