Completed
Push — Codacy-Fixes ( c36731...91d4f5 )
by Shawn
02:21
created

CollectionList::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
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
    public abstract function getList() : Collection;
0 ignored issues
show
Coding Style introduced by
The abstract declaration must precede the visibility declaration
Loading history...
19
}