GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (203)

Model/ResourceModel/ActiveCampaign/Abandoned.php (2 issues)

Labels
Severity
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
The type CommerceLeague\ActiveCam...Data\AbandonedInterface 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...
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
The constant CommerceLeague\ActiveCam...e::ABANDONED_CART_TABLE was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
24
    }
25
}
26