Completed
Push — master ( a13c2f...df1c7f )
by Kamil
9s
created

CustomBlockContext::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 7

Duplication

Lines 9
Ratio 100 %

Importance

Changes 0
Metric Value
dl 9
loc 9
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 7
nc 1
nop 3
1
<?php
2
3
namespace Tests\Lakion\SyliusCmsBundle\Behat\Context\Setup;
4
5
use Behat\Behat\Context\Context;
6
use Doctrine\Common\Persistence\ObjectManager;
7
use Sylius\Behat\Service\SharedStorageInterface;
8
use Sylius\Bundle\CoreBundle\Fixture\Factory\ExampleFactoryInterface;
9
10 View Code Duplication
final class CustomBlockContext implements Context
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
11
{
12
    /**
13
     * @var SharedStorageInterface
14
     */
15
    private $sharedStorage;
16
17
    /**
18
     * @var ExampleFactoryInterface
19
     */
20
    private $customBlockExampleFactory;
21
22
    /**
23
     * @var ObjectManager
24
     */
25
    private $customBlockManager;
26
27
    /**
28
     * @param SharedStorageInterface $sharedStorage
29
     * @param ExampleFactoryInterface $customBlockExampleFactory
30
     * @param ObjectManager $customBlockManager
31
     */
32
    public function __construct(
33
        SharedStorageInterface $sharedStorage,
34
        ExampleFactoryInterface $customBlockExampleFactory,
35
        ObjectManager $customBlockManager
36
    ) {
37
        $this->sharedStorage = $sharedStorage;
38
        $this->customBlockExampleFactory = $customBlockExampleFactory;
39
        $this->customBlockManager = $customBlockManager;
40
    }
41
42
    /**
43
     * @Given the store has custom block :name
44
     */
45
    public function theStoreHasCustomBlock($name)
46
    {
47
        $customBlock = $this->customBlockExampleFactory->create(['name' => $name]);
48
49
        $this->customBlockManager->persist($customBlock);
50
        $this->customBlockManager->flush();
51
52
        $this->sharedStorage->set('custom_block', $customBlock);
53
    }
54
55
    /**
56
     * @Given /^the store has custom block "([^"]+)" with (body|title|link) "([^"]+)"$/
57
     */
58
    public function theStoreHasCustomBlockWithField($name, $field, $value)
59
    {
60
        $customBlock = $this->customBlockExampleFactory->create(['name' => $name, $field => $value]);
61
62
        $this->customBlockManager->persist($customBlock);
63
        $this->customBlockManager->flush();
64
65
        $this->sharedStorage->set('custom_block', $customBlock);
66
    }
67
}
68