EmailSendReceiveCollection::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
namespace TonicHealthCheck\Check\Email\Entity;
4
5
use Collections\Collection;
6
7
/**
8
 * Class EmailSendReceiveCollection
9
 * @package TonicHealthCheck\Check\Email\Entity
10
 */
11
class EmailSendReceiveCollection extends Collection
12
{
13
    const OBJECT_CLASS = EmailSendReceive::class;
14
15
    /**
16
     * ProcessingCheckCollection constructor.
17
     */
18 13
    public function __construct()
19
    {
20 13
        parent::__construct(static::OBJECT_CLASS);
21 13
    }
22
}
23