Skip to content

Commit

Permalink
add property type-hints (Sylius#12891)
Browse files Browse the repository at this point in the history
  • Loading branch information
vvasiloi committed Aug 14, 2021
1 parent 119a091 commit e28930f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/Sylius/Bundle/CoreBundle/Checkout/CheckoutResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,13 @@

final class CheckoutResolver implements EventSubscriberInterface
{
/** @var CartContextInterface */
private $cartContext;
private CartContextInterface $cartContext;

/** @var CheckoutStateUrlGeneratorInterface */
private $urlGenerator;
private CheckoutStateUrlGeneratorInterface $urlGenerator;

/** @var RequestMatcherInterface */
private $requestMatcher;
private RequestMatcherInterface $requestMatcher;

/** @var FactoryInterface */
private $stateMachineFactory;
private FactoryInterface $stateMachineFactory;

public function __construct(
CartContextInterface $cartContext,
Expand Down

0 comments on commit e28930f

Please sign in to comment.