%PDF- %PDF-
| Direktori : /home/graphicd/www/vebto/vendor/spatie/laravel-analytics/src/Exceptions/ |
| Current File : /home/graphicd/www/vebto/vendor/spatie/laravel-analytics/src/Exceptions/InvalidPeriod.php |
<?php
namespace Spatie\Analytics\Exceptions;
use DateTimeInterface;
use Exception;
class InvalidPeriod extends Exception
{
public static function startDateCannotBeAfterEndDate(DateTimeInterface $startDate, DateTimeInterface $endDate)
{
return new static("Start date `{$startDate->format('Y-m-d')}` cannot be after end date `{$endDate->format('Y-m-d')}`.");
}
}