Skip to content

Commit

Permalink
Order uses alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
malarzm committed Feb 27, 2020
1 parent 5fcbf7b commit 2181a59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/doc/first_steps.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ If you are using `autowiring`, you can use type hinting to fetch the ``doctrine_
// App/Controller/DefaultController.php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Doctrine\ODM\MongoDB\DocumentManager as DocumentManager;
use App\Document\Product;
use Doctrine\ODM\MongoDB\DocumentManager;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class DefaultController extends AbstractController
Expand Down Expand Up @@ -451,8 +451,8 @@ is to use the repository as a service and inject it as a dependency into other s
namespace Acme\StoreBundle\Repository;
use Acme\StoreBundle\Document\Product;
use Doctrine\Bundle\MongoDBBundle\Repository\ServiceDocumentRepository;
use Doctrine\Bundle\MongoDBBundle\ManagerRegistry;
use Doctrine\Bundle\MongoDBBundle\Repository\ServiceDocumentRepository;
/**
* Remember to map this repository in the corresponding document's repositoryClass.
Expand Down

0 comments on commit 2181a59

Please sign in to comment.