File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ could look something like this::
238
238
// public/index.php
239
239
use App\Kernel;
240
240
use App\LegacyBridge;
241
- use Symfony\Component\Debug \Debug;
241
+ use Symfony\Component\ErrorHandler \Debug;
242
242
use Symfony\Component\HttpFoundation\Request;
243
243
244
244
require dirname(__DIR__).'/vendor/autoload.php';
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ you can create your own named set or requirements to be reused consistently ever
26
26
// src/Validator/Constraints/PasswordRequirements.php
27
27
namespace App\Validator\Constraints;
28
28
29
- use Symfony\Component\Validator\Compound;
29
+ use Symfony\Component\Validator\Constraints\ Compound;
30
30
use Symfony\Component\Validator\Constraints as Assert;
31
31
32
32
/**
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ that all have constraints on their properties.
28
28
// src/Entity/BookCollection.php
29
29
namespace App\Entity;
30
30
31
- use Doctrine\Collections\ArrayCollection;
32
- use Doctrine\Collections\Collection
31
+ use Doctrine\Common\ Collections\ArrayCollection;
32
+ use Doctrine\Common\ Collections\Collection
33
33
use Doctrine\ORM\Mapping as ORM;
34
34
use Symfony\Component\Validator\Constraints as Assert;
35
35
Original file line number Diff line number Diff line change @@ -1867,7 +1867,7 @@ session shouldn't be used when matching a request:
1867
1867
1868
1868
// config/routes.php
1869
1869
use App\Controller\MainController;
1870
- use Symfony\Bundle\FrameworkBundle \Routing\Loader\Configurator\RoutingConfigurator;
1870
+ use Symfony\Component \Routing\Loader\Configurator\RoutingConfigurator;
1871
1871
1872
1872
return function (RoutingConfigurator $routes) {
1873
1873
$routes->add('homepage', '/')
Original file line number Diff line number Diff line change @@ -307,10 +307,10 @@ parts of your application and mocking it in your tests.
307
307
308
308
Instead of translating a string at the time of creation, you can use a
309
309
"translatable object", which is an instance of the
310
- :class: `Symfony\\ Component\\ Translation\\ Translatable ` class. This object stores
310
+ :class: `Symfony\\ Component\\ Translation\\ TranslatableMessage ` class. This object stores
311
311
all the information needed to fully translate its contents when needed::
312
312
313
- use Symfony\Component\Translation\Translatable ;
313
+ use Symfony\Component\Translation\TranslatableMessage ;
314
314
315
315
// the first argument is required and it's the original message
316
316
$message = new Translatable('Symfony is great!');
You can’t perform that action at this time.
0 commit comments