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.
Completed
Push — master ( 468920...acc64b )
by Andreas
04:19
created

Collection   A

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\Order;
7
8
use CommerceLeague\ActiveCampaign\Model\ActiveCampaign\Order;
9
use CommerceLeague\ActiveCampaign\Model\ResourceModel\ActiveCampaign\Order as OrderResource;
10
use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
11
12
/**
13
 * Class Collection
14
 * @codeCoverageIgnore
15
 */
16
class Collection extends AbstractCollection
17
{
18
    /**
19
     * @inheritDoc
20
     */
21
    protected function _construct()
22
    {
23
        $this->_init(Order::class, OrderResource::class);
24
    }
25
}
26