Я создал свой собственный модуль CRUD, который содержит встроенное действие редактирования, похожее на действие для страниц CMS.
Все работает нормально, но при запуске phpsniffer со стандартом EcgM2 я получаю следующее предупреждение:
Модель LSD метод save () обнаружен в цикле
Как я могу избежать этого?
Примечание: то же самое предупреждение появляется, если я "нюхаю" основной файл, указанный выше.
Вот мой execute
метод на тот случай, если кому-то это нужно. Но это очень похоже на тот из контроллера страницы CMS
public function execute()
{
/** @var \Magento\Framework\Controller\Result\Json $resultJson */
$resultJson = $this->jsonFactory->create();
$error = false;
$messages = [];
$postItems = $this->getRequest()->getParam('items', []);
if (!($this->getRequest()->getParam('isAjax') && count($postItems))) {
return $resultJson->setData([
'messages' => [__('Please correct the data sent.')],
'error' => true,
]);
}
foreach (array_keys($postItems) as $authorId) {
/** @var \Sample\News\Model\Author $author */
$author = $this->authorRepository->getById((int)$authorId);
try {
$authorData = $this->filterData($postItems[$authorId]);
$this->dataObjectHelper->populateWithArray($author, $authorData , AuthorInterface::class);
$this->authorRepository->save($author);
} catch (LocalizedException $e) {
$messages[] = $this->getErrorWithAuthorId($author, $e->getMessage());
$error = true;
} catch (\RuntimeException $e) {
$messages[] = $this->getErrorWithAuthorId($author, $e->getMessage());
$error = true;
} catch (\Exception $e) {
$messages[] = $this->getErrorWithAuthorId(
$author,
__('Something went wrong while saving the author.')
);
$error = true;
}
}
return $resultJson->setData([
'messages' => $messages,
'error' => $error
]);
}
saveAttribute
метода EAV, так как он принимает массив «кодов атрибутов» для сохранения вместо одного кода атрибутаAbstractAttribute
качестве параметра, потому что он мне не нужен в моей плоской сущности. Работает плавно. Еще раз спасибо.