for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SET\Handlers\Calendar;
use Illuminate\Database\Eloquent\Collection;
abstract class CollectionList
{
protected $start;
protected $end;
public function __construct($start, $end)
$this->start = $start;
$this->end = $end;
}
abstract public function getList() : Collection;