Completed
Push — development ( aa14f4...eba539 )
by Ivan
05:22
created

CategoryExporterPlugin::run()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
nc 1
nop 4
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Copyright © 2016-present Spryker Systems GmbH. All rights reserved.
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Econda\Communication\Plugin;
9
10
use Generated\Shared\Transfer\BatchResultTransfer;
0 ignored issues
show
Bug introduced by
The type Generated\Shared\Transfer\BatchResultTransfer was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
11
use Generated\Shared\Transfer\LocaleTransfer;
0 ignored issues
show
Bug introduced by
The type Generated\Shared\Transfer\LocaleTransfer was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
12
use Spryker\Zed\Kernel\Communication\AbstractPlugin;
13
use SprykerEco\Zed\Econda\Business\Exporter\Writer\File\FileWriterInterface;
14
use SprykerEco\Zed\Econda\Dependency\Plugin\ExporterPluginInterface;
15
use Symfony\Component\Console\Output\OutputInterface;
16
17
/**
18
 * @method \SprykerEco\Zed\Econda\Business\EcondaFacadeInterface getFacade()
19
 * @method \Spryker\Zed\Collector\CollectorConfig getConfig()
20
 */
21
class CategoryExporterPlugin extends AbstractPlugin implements ExporterPluginInterface
22
{
23
    /**
24
     * @param \Generated\Shared\Transfer\LocaleTransfer $localeTransfer
25
     * @param \Generated\Shared\Transfer\BatchResultTransfer $batchResultTransfer
26
     * @param \SprykerEco\Zed\Econda\Business\Exporter\Writer\File\FileWriterInterface $dataWriter
27
     * @param \Symfony\Component\Console\Output\OutputInterface $output
28
     *
29
     * @return void
30
     */
31
    public function run(
32
        LocaleTransfer $localeTransfer,
33
        BatchResultTransfer $batchResultTransfer,
34
        FileWriterInterface $dataWriter,
35
        OutputInterface $output
36
    ): void {
37
        $this->getFacade()
38
            ->exportCategories(
39
                $localeTransfer,
40
                $batchResultTransfer,
41
                $dataWriter,
42
                $output
43
            );
44
    }
45
}
46