Question

getScope() method generates:

Fatal error: Uncaught Error: Call to undefined method Magento\Framework\App\Config::getScope()

public function __construct(
    \Magento\Framework\ObjectManagerInterface $objectManager,
    \Magento\Framework\App\Config\ScopeConfigInterface $scope
) {
    $this->objectManager = $objectManager;
    $this->scope         = $scope;
    $this->entities      = $this->scope
        ->getScope(ScopeConfigInterface::SCOPE_TYPE_DEFAULT)
        ->getValue('oei/export_entities');
}
Was it helpful?

Solution

Delete getScope method will solve the problem.

public function __construct(
\Magento\Framework\ObjectManagerInterface $objectManager,
\Magento\Framework\App\Config\ScopeConfigInterface $scope
) {
$this->objectManager = $objectManager;
$this->scope         = $scope;
$this->entities      = $this->scope
    //->getScope(ScopeConfigInterface::SCOPE_TYPE_DEFAULT)
    ->getValue('oei/export_entities');
}
Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top