File "Period.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/laravel-backup/src/Tasks/Cleanup/Period.php
File size: 386 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Backup\Tasks\Cleanup;
use Carbon\Carbon;
class Period
{
public function __construct(
protected Carbon $startDate,
protected Carbon $endDate
) {
}
public function startDate(): Carbon
{
return $this->startDate->copy();
}
public function endDate(): Carbon
{
return $this->endDate->copy();
}
}