Issues (254)

Controller/Adminhtml/Faq/Delete.php (4 issues)

Labels
Severity
1
<?php
2
/**
3
 * MagePrince
4
 *
5
 * NOTICE OF LICENSE
6
 *
7
 * This source file is subject to the mageprince.com license that is
8
 * available through the world-wide-web at this URL:
9
 * https://mageprince.com/end-user-license-agreement
10
 *
11
 * DISCLAIMER
12
 *
13
 * Do not edit or add to this file if you wish to upgrade this extension to newer
14
 * version in the future.
15
 *
16
 * @category    MagePrince
17
 * @package     Mageprince_Faq
18
 * @copyright   Copyright (c) MagePrince (https://mageprince.com/)
19
 * @license     https://mageprince.com/end-user-license-agreement
20
 */
21
22
namespace Mageprince\Faq\Controller\Adminhtml\Faq;
23
24
use Magento\Backend\App\Action\Context;
0 ignored issues
show
The type Magento\Backend\App\Action\Context was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
25
use Magento\Backend\Model\View\Result\Redirect;
0 ignored issues
show
The type Magento\Backend\Model\View\Result\Redirect was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
26
use Magento\Framework\Controller\ResultInterface;
0 ignored issues
show
The type Magento\Framework\Controller\ResultInterface was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
27
use Mageprince\Faq\Model\FaqRepository;
28
29
class Delete extends Faq
30
{
31
    /**
32
     * @var FaqRepository
33
     */
34
    protected $faqRepository;
35
36
    /**
37
     * Delete constructor.
38
     * @param Context $context
39
     * @param FaqRepository $faqRepository
40
     */
41
    public function __construct(
42
        Context $context,
43
        FaqRepository $faqRepository
44
    ) {
45
        $this->faqRepository = $faqRepository;
46
        parent::__construct($context);
47
    }
48
49
    /**
50
     * Delete action
51
     *
52
     * @return ResultInterface
53
     */
54
    public function execute()
55
    {
56
        /** @var Redirect $resultRedirect */
57
        $resultRedirect = $this->resultRedirectFactory->create();
58
        $id = $this->getRequest()->getParam('faq_id');
59
        if ($id) {
60
            try {
61
                $this->faqRepository->deleteById($id);
62
                $this->messageManager->addSuccessMessage(__('You deleted the Faq.'));
0 ignored issues
show
The function __ was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

62
                $this->messageManager->addSuccessMessage(/** @scrutinizer ignore-call */ __('You deleted the Faq.'));
Loading history...
63
                return $resultRedirect->setPath('*/*/');
64
            } catch (\Exception $e) {
65
                $this->messageManager->addErrorMessage($e->getMessage());
66
                return $resultRedirect->setPath('*/*/edit', ['faq_id' => $id]);
67
            }
68
        }
69
        $this->messageManager->addErrorMessage(__('We can\'t find a Faq to delete.'));
70
        return $resultRedirect->setPath('*/*/');
71
    }
72
}
73