1 | <?php |
||
35 | class MagentoConfigurationLoader extends Configuration |
||
36 | { |
||
37 | |||
38 | /** |
||
39 | * The instance with the directory list. |
||
40 | * |
||
41 | * @var \Magento\Framework\Filesystem\DirectoryList |
||
42 | */ |
||
43 | protected $directoryList; |
||
44 | |||
45 | /** |
||
46 | * Initializes the configuration loader. |
||
47 | * |
||
48 | * @param \Magento\Framework\Filesystem\DirectoryList $directoryList The directory list |
||
49 | * @param \Symfony\Component\Console\Input\InputInterface $input The input instance |
||
50 | * @param \Symfony\Component\DependencyInjection\ContainerInterface $container The container instance |
||
51 | * @param \TechDivision\Import\Cli\LibraryLoader $libraryLoader The configuration loader instance |
||
52 | * @param \TechDivision\Import\ConfigurationFactoryInterface $configurationFactory The configuration factory instance |
||
53 | * @param \TechDivision\Import\Utils\CommandNames $commandNames The available command names |
||
54 | * @param \TechDivision\Import\Utils\Mappings\CommandNameToEntityTypeCode $commandNameToEntityTypeCodes The mapping of the command names to the entity type codes |
||
55 | */ |
||
56 | public function __construct( |
||
75 | |||
76 | /** |
||
77 | * Return's the vendor directory used to load the default configuration files from. |
||
78 | * |
||
79 | * @return string The vendor directory |
||
80 | */ |
||
81 | public function getVendorDir() |
||
85 | } |
||
86 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..