मैंने अपना स्वयं का CRUD मॉड्यूल बनाया है जिसमें CMS पृष्ठों के लिए एक इनलाइन एडिट एक्शन जैसा है
सब कुछ ठीक है, लेकिन जब EcgM2 मानक के साथ phpsniffer चल रहा है तो मुझे यह चेतावनी मिलती है:
मॉडल एलएसडी विधि बचा () लूप में पाया गया
इससे कैसे बचा जा सकता है?
नोट: वही चेतावनी दिखाई देती है यदि मैं ऊपर लिंक की गई कोर फाइल को "सूँघता" हूँ।
यहाँ मेरी 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
]);
}