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.

Customer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A _construct() 0 3 1
1
<?php
2
declare(strict_types=1);
3
/**
4
 */
5
6
namespace CommerceLeague\ActiveCampaign\Model\ResourceModel\ActiveCampaign;
7
8
use CommerceLeague\ActiveCampaign\Api\Data\CustomerInterface;
9
use CommerceLeague\ActiveCampaign\Setup\SchemaInterface;
10
use Magento\Framework\Model\ResourceModel\Db\AbstractDb;
11
12
/**
13
 * Class Customer
14
 * @codeCoverageIgnore
15
 */
16
class Customer extends AbstractDb
17
{
18
    /**
19
     * @inheritDoc
20
     */
21
    protected function _construct()
22
    {
23
        $this->_init(SchemaInterface::CUSTOMER_TABLE, CustomerInterface::ENTITY_ID);
24
    }
25
}
26