scopeConfig = $scopeConfig; } /** * @return bool */ public function isAsyncEnabled(): bool { return (bool) $this->scopeConfig->getValue(self::XML_PATH_ASYNC_ENABLED); } /** * @return int */ public function getBatchSize(): int { return (int) max(1, (int) $this->scopeConfig->getValue(self::XML_PATH_BATCH_SIZE)); } }