Skip to content

Commit

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

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

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

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

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

public function __construct(
CartContextInterface $cartContext,
Expand Down

0 comments on commit 7df037f

Please sign in to comment.