Skip to content

Commit fa7e98c

Browse files
committed
minor #11610 Ordered use statements (OskarStark)
This PR was merged into the 4.2 branch. Discussion ---------- Ordered use statements <!-- 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 ------- 6ce56cd Ordered use statements
2 parents 50411fe + 6ce56cd commit fa7e98c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflow.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ As configured, the following property is used by the marking store::
197197
With this workflow named ``blog_publishing``, you can get help to decide
198198
what actions are allowed on a blog post::
199199

200-
use Symfony\Component\Workflow\Exception\LogicException;
201200
use App\Entity\BlogPost;
201+
use Symfony\Component\Workflow\Exception\LogicException;
202202

203203
$post = BlogPost();
204204

@@ -680,8 +680,8 @@ requires:
680680
681681
Then you can access this metadata in your controller as follows::
682682

683-
use Symfony\Component\Workflow\Registry;
684683
use App\Entity\BlogPost;
684+
use Symfony\Component\Workflow\Registry;
685685

686686
public function myController(Registry $registry, BlogPost $post)
687687
{

0 commit comments

Comments
 (0)