CollectionList::getList()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
nc 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