%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/spatie/laravel-analytics/src/Exceptions/ |
Current File : /home/graphicd/public_html/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')}`."); } }