The class Varien_Db_Adapter_Interface does not exist. Is this class maybe located in a folder that is not analyzed, or in a newer version of your dependencies than listed in your composer.lock/composer.json?
Loading history...
33
$result->setStatus($result::STATUS_ERROR);
34
$result->setMessage(
35
"<error>Mysql Version: Can not check. Unable to obtain resource connection 'core_write'.</error>"
36
);
37
} else {
38
$this->checkImplementation($result, $dbAdapter);
39
}
40
}
41
42
/**
43
* @param Result $result
44
* @param Varien_Db_Adapter_Interface $dbAdapter
45
* @return void
46
*/
47
abstract protected function checkImplementation(Result $result, Varien_Db_Adapter_Interface $dbAdapter);