diff --git a/src/Period.php b/src/Period.php index 9b54669..a549de4 100644 --- a/src/Period.php +++ b/src/Period.php @@ -58,11 +58,6 @@ public static function years(int $years): self return new self($startDate, $endDate); } - public static function custom(Carbon $startDate, Carbon $endDate): self - { - return new self($startDate, $endDate); - } - public static function since(Carbon $startDate): self { return new self($startDate, Carbon::today());