CompanyDataFixtureFactory::load()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 17
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 17
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 11
nc 2
nop 1
1
<?php
2
3
/*
4
 * This file has been created by developers from BitBag.
5
 * Feel free to contact us once you face any issues or want to start
6
 * another great project.
7
 * You can find more information about us on https://bitbag.shop and write us
8
 * an email on [email protected].
9
 */
10
11
declare(strict_types=1);
12
13
namespace BitBag\SyliusInvoicingPlugin\Fixture\Factory;
14
15
use BitBag\SyliusInvoicingPlugin\Entity\CompanyDataInterface;
16
use BitBag\SyliusInvoicingPlugin\Repository\CompanyDataRepositoryInterface;
17
use Sylius\Component\Resource\Factory\FactoryInterface;
18
19
final class CompanyDataFixtureFactory implements FixtureFactoryInterface
20
{
21
    /** @var FactoryInterface  */
22
    private $companyDataFactory;
23
24
    /** @var CompanyDataRepositoryInterface  */
25
    private $companyDataRepository;
26
27
    public function __construct(
28
        FactoryInterface $companyDataFactory,
29
        CompanyDataRepositoryInterface $companyDataRepository
30
    ) {
31
        $this->companyDataFactory = $companyDataFactory;
32
        $this->companyDataRepository = $companyDataRepository;
33
    }
34
35
    /**
36
     * {@inheritdoc}
37
     */
38
    public function load(array $data): void
39
    {
40
        foreach ($data as $fields) {
41
            /** @var CompanyDataInterface $companyData */
42
            $companyData = $this->companyDataFactory->createNew();
43
44
            $companyData->setName($fields['name']);
45
            $companyData->setVatNumber($fields['vatNumber']);
46
            $companyData->setCity($fields['city']);
47
            $companyData->setCountryCode($fields['countryCode']);
48
            $companyData->setPostcode($fields['postcode']);
49
            $companyData->setStreet($fields['street']);
50
            $companyData->setSeller($fields['seller']);
51
52
            $this->companyDataRepository->add($companyData);
53
        }
54
    }
55
}
56