Skip to content

Commit 5e9de27

Browse files
committed
Use ordered use statements for php code examples
1 parent 342640d commit 5e9de27

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/http_client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,8 +555,8 @@ so that the :doc:`HttpKernel component </components/http_kernel>` needs to be
555555
installed in your application::
556556

557557
use Symfony\Component\HttpClient\CachingHttpClient;
558-
use Symfony\Component\HttpKernel\HttpCache\Store;
559558
use Symfony\Component\HttpClient\HttpClient;
559+
use Symfony\Component\HttpKernel\HttpCache\Store;
560560

561561
$store = new Store('/path/to/cache/storage/');
562562
$client = HttpClient::create();

messenger/message-recorder.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ using the ``DispatchAfterCurrentBusMiddleware`` and adding a
5252
use App\Messenger\Event\UserRegistered;
5353
use Doctrine\ORM\EntityManagerInterface;
5454
use Symfony\Component\Messenger\Envelope;
55-
use Symfony\Component\Messenger\Stamp\DispatchAfterCurrentBusStamp;
5655
use Symfony\Component\Messenger\MessageBusInterface;
56+
use Symfony\Component\Messenger\Stamp\DispatchAfterCurrentBusStamp;
5757

5858
class RegisterUserHandler
5959
{

0 commit comments

Comments
 (0)