mageprince /
magento2-FAQ
| 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\ResourceModel\FaqGroup; |
||
| 23 | |||
| 24 | use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection; |
||
|
0 ignored issues
–
show
|
|||
| 25 | use Mageprince\Faq\Model\FaqGroup as FaqGroupModel; |
||
| 26 | use Mageprince\Faq\Model\ResourceModel\FaqGroup as FaqGroupResourceModel; |
||
| 27 | |||
| 28 | class Collection extends AbstractCollection |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $_idFieldName = 'faqgroup_id'; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Define resource model |
||
| 37 | * |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function _construct() |
||
| 41 | { |
||
| 42 | $this->_init( |
||
| 43 | FaqGroupModel::class, |
||
| 44 | FaqGroupResourceModel::class |
||
| 45 | ); |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * Retrieve option array |
||
| 50 | * |
||
| 51 | * @return array |
||
| 52 | */ |
||
| 53 | public function toOptionArray() |
||
| 54 | { |
||
| 55 | return parent::_toOptionArray('faqgroup_id', 'groupname'); |
||
| 56 | } |
||
| 57 | } |
||
| 58 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths