FaqGroup::getGroupName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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\Model;
23
24
use Magento\Framework\Model\AbstractModel;
0 ignored issues
show
Bug introduced by
The type Magento\Framework\Model\AbstractModel 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 Mageprince\Faq\Api\Data\FaqGroupInterface;
26
use Mageprince\Faq\Model\ResourceModel\FaqGroup as FaqGroupResourceModel;
27
28
class FaqGroup extends AbstractModel implements FaqGroupInterface
29
{
30
    /**
31
     * @return void
32
     */
33
    public function _construct()
34
    {
35
        $this->_init(FaqGroupResourceModel::class);
36
    }
37
38
    /**
39
     * @inheridoc
40
     */
41
    public function getFaqGroupId()
42
    {
43
        return $this->getData(self::FAQGROUP_ID);
44
    }
45
46
    /**
47
     * @inheridoc
48
     */
49
    public function setFaqGroupId($faqGroupId)
50
    {
51
        return $this->setData(self::FAQGROUP_ID, $faqGroupId);
52
    }
53
54
    /**
55
     * @inheridoc
56
     */
57
    public function getGroupName()
58
    {
59
        return $this->getData(self::GROUPNAME);
60
    }
61
62
    /**
63
     * @inheridoc
64
     */
65
    public function setGroupName($groupName)
66
    {
67
        return $this->setData(self::GROUPNAME, $groupName);
68
    }
69
70
    /**
71
     * @inheridoc
72
     */
73
    public function getIcon()
74
    {
75
        return $this->getData(self::ICON);
76
    }
77
78
    /**
79
     * @inheridoc
80
     */
81
    public function setIcon($icon)
82
    {
83
        return $this->setData(self::ICON, $icon);
84
    }
85
86
    /**
87
     * @inheridoc
88
     */
89
    public function getFaqIds()
90
    {
91
        return $this->getData(self::FAQIDS);
92
    }
93
94
    /**
95
     * @inheridoc
96
     */
97
    public function setFaqIds($faqIds)
98
    {
99
        return $this->setData(self::FAQIDS, $faqIds);
100
    }
101
102
    /**
103
     * @inheridoc
104
     */
105
    public function getSortOrder()
106
    {
107
        return $this->getData(self::SORTORDER);
108
    }
109
110
    /**
111
     * @inheridoc
112
     */
113
    public function setSortOrder($sortOrder)
114
    {
115
        return $this->setData(self::SORTORDER, $sortOrder);
116
    }
117
118
    /**
119
     * @inheridoc
120
     */
121
    public function getStatus()
122
    {
123
        return $this->getData(self::STATUS);
124
    }
125
126
    /**
127
     * @inheridoc
128
     */
129
    public function setStatus($status)
130
    {
131
        return $this->setData(self::STATUS, $status);
132
    }
133
}
134