@@ -15,6 +15,7 @@ discard block |
||
| 15 | 15 | use Behat\Gherkin\Node\TableNode; |
| 16 | 16 | use Behat\Mink\Element\NodeElement; |
| 17 | 17 | use Doctrine\Common\Persistence\ObjectManager; |
| 18 | +use Sylius\Behat\Service\SharedStorageInterface; |
|
| 18 | 19 | use Sylius\Component\Attribute\Factory\AttributeFactoryInterface; |
| 19 | 20 | use Sylius\Component\Core\Formatter\StringInflector; |
| 20 | 21 | use Sylius\Component\Core\Model\ChannelInterface; |
@@ -23,16 +24,15 @@ discard block |
||
| 23 | 24 | use Sylius\Component\Core\Model\ProductTranslationInterface; |
| 24 | 25 | use Sylius\Component\Core\Model\ProductVariantInterface; |
| 25 | 26 | use Sylius\Component\Core\Repository\ProductRepositoryInterface; |
| 26 | -use Sylius\Behat\Service\SharedStorageInterface; |
|
| 27 | 27 | use Sylius\Component\Core\Uploader\ImageUploaderInterface; |
| 28 | 28 | use Sylius\Component\Product\Factory\ProductFactoryInterface; |
| 29 | 29 | use Sylius\Component\Product\Model\ProductAttributeInterface; |
| 30 | 30 | use Sylius\Component\Product\Model\ProductAttributeValueInterface; |
| 31 | 31 | use Sylius\Component\Product\Model\ProductOptionInterface; |
| 32 | 32 | use Sylius\Component\Product\Model\ProductOptionValueInterface; |
| 33 | +use Sylius\Component\Product\Resolver\ProductVariantResolverInterface; |
|
| 33 | 34 | use Sylius\Component\Resource\Factory\FactoryInterface; |
| 34 | 35 | use Sylius\Component\Taxation\Model\TaxCategoryInterface; |
| 35 | -use Sylius\Component\Product\Resolver\ProductVariantResolverInterface; |
|
| 36 | 36 | use Symfony\Component\HttpFoundation\File\UploadedFile; |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace Sylius\Behat\Page\Admin\Product; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Behat\Page\Admin\Crud\IndexPageInterface as CrudIndexPageInterface; |
| 15 | -use Sylius\Component\Core\Model\ProductInterface; |
|
| 16 | 15 | |
| 17 | 16 | /** |
| 18 | 17 | * @author Anna Walasek <[email protected]> |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | |
| 12 | 12 | namespace Sylius\Bundle\CoreBundle\Controller; |
| 13 | 13 | |
| 14 | -use Sylius\Bundle\ResourceBundle\Controller\RedirectHandlerInterface; |
|
| 15 | 14 | use Sylius\Bundle\ResourceBundle\Controller\ResourceController; |
| 16 | 15 | use Sylius\Component\Core\Model\ProductTaxonInterface; |
| 17 | 16 | use Sylius\Component\Resource\ResourceActions; |
@@ -14,11 +14,9 @@ |
||
| 14 | 14 | use Doctrine\Common\Collections\ArrayCollection; |
| 15 | 15 | use Doctrine\Common\Collections\Collection; |
| 16 | 16 | use PhpSpec\ObjectBehavior; |
| 17 | -use Prophecy\Argument; |
|
| 18 | 17 | use Sylius\Bundle\CoreBundle\Form\DataTransformer\ProductTaxonCollectionToTaxonCollectionTransformer; |
| 19 | 18 | use Sylius\Component\Core\Model\ProductTaxonInterface; |
| 20 | 19 | use Sylius\Component\Core\Model\TaxonInterface; |
| 21 | -use Sylius\Component\Product\Model\ProductInterface; |
|
| 22 | 20 | use Sylius\Component\Resource\Exception\UnexpectedTypeException; |
| 23 | 21 | use Sylius\Component\Resource\Factory\FactoryInterface; |
| 24 | 22 | use Symfony\Component\Form\DataTransformerInterface; |
@@ -24,7 +24,8 @@ |
||
| 24 | 24 | |
| 25 | 25 | final class UniqueSimpleProductCodeValidatorSpec extends ObjectBehavior |
| 26 | 26 | { |
| 27 | - function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) { |
|
| 27 | + function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) |
|
| 28 | + { |
|
| 28 | 29 | $this->beConstructedWith($productVariantRepository); |
| 29 | 30 | $this->initialize($context); |
| 30 | 31 | } |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | { |
| 56 | 56 | $this->getElement('save_configuration_button')->press(); |
| 57 | 57 | |
| 58 | - $this->getDocument()->waitFor(5, function (){ |
|
| 58 | + $this->getDocument()->waitFor(5, function () { |
|
| 59 | 59 | return false === $this->getElement('save_configuration_button')->hasClass('loading'); |
| 60 | 60 | } ); |
| 61 | 61 | } |