CollectionList   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 13
ccs 0
cts 5
cp 0
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getList() 0 1 ?
A __construct() 0 5 1
1
<?php
2
3
namespace SET\Handlers\Calendar;
4
5
use Illuminate\Database\Eloquent\Collection;
6
7
abstract class CollectionList
8
{
9
    protected $start;
10
    protected $end;
11
12
    public function __construct($start, $end)
13
    {
14
        $this->start = $start;
15
        $this->end = $end;
16
    }
17
18
    abstract public function getList() : Collection;
19
}
20