commerceleague /
magento2-module-activecampaign
| 1 | <?php |
||
| 2 | declare(strict_types=1); |
||
| 3 | /** |
||
| 4 | */ |
||
| 5 | |||
| 6 | namespace CommerceLeague\ActiveCampaign\Model\ResourceModel\ActiveCampaign; |
||
| 7 | |||
| 8 | use CommerceLeague\ActiveCampaign\Api\Data\AbandonedInterface; |
||
|
0 ignored issues
–
show
|
|||
| 9 | use CommerceLeague\ActiveCampaign\Setup\SchemaInterface; |
||
| 10 | use Magento\Framework\Model\ResourceModel\Db\AbstractDb; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Class Abandoned |
||
| 14 | * @codeCoverageIgnore |
||
| 15 | */ |
||
| 16 | class Abandoned extends AbstractDb |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @inheritDoc |
||
| 20 | */ |
||
| 21 | protected function _construct() |
||
| 22 | { |
||
| 23 | $this->_init(SchemaInterface::ABANDONED_CART_TABLE, AbandonedInterface::ENTITY_ID); |
||
|
0 ignored issues
–
show
|
|||
| 24 | } |
||
| 25 | } |
||
| 26 |
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