Skip to content

Commit df13346

Browse files
committed
bug symfony#12742 Update parent_services.rst (amine-betari)
This PR was submitted for the 4.4 branch but it was merged into the 3.4 branch instead (closes symfony#12742). Discussion ---------- Update parent_services.rst <!-- 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 ------- 833ed5e Update parent_services.rst
2 parents 25e8814 + 833ed5e commit df13346

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

service_container/parent_services.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Your child service classes may look like this::
3939
// src/AppBundle/Repository/DoctrineUserRepository.php
4040
namespace AppBundle\Repository;
4141

42-
use AppBundle\Repository\BaseDoctrineRepository
42+
use AppBundle\Repository\BaseDoctrineRepository;
4343

4444
// ...
4545
class DoctrineUserRepository extends BaseDoctrineRepository
@@ -50,7 +50,7 @@ Your child service classes may look like this::
5050
// src/AppBundle/Repository/DoctrinePostRepository.php
5151
namespace AppBundle\Repository;
5252

53-
use AppBundle\Repository\BaseDoctrineRepository
53+
use AppBundle\Repository\BaseDoctrineRepository;
5454

5555
// ...
5656
class DoctrinePostRepository extends BaseDoctrineRepository

0 commit comments

Comments
 (0)