Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function run( |
||
33 | LocaleTransfer $locale, |
||
34 | BatchResultTransfer $result, |
||
35 | WriterInterface $dataWriter, |
||
36 | OutputInterface $output |
||
37 | ) { |
||
38 | $csvDir = $this->getConfig()->getFileExportPath(); |
||
39 | if (!is_dir($csvDir)) { |
||
40 | mkdir($csvDir); |
||
41 | } |
||
42 | $dataWriter->setFolderPath($csvDir); |
||
43 | $this->getFacade() |
||
44 | ->exportProducts( |
||
|
|||
45 | $locale, |
||
46 | $result, |
||
47 | $dataWriter, |
||
48 | $output |
||
49 | ); |
||
52 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.