PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
analytics
/
src
/
Exceptions
<?php namespace Botble\Analytics\Exceptions; use DateTimeInterface; use Exception; class InvalidPeriod extends Exception { /** * @param DateTimeInterface $startDate * @param DateTimeInterface $endDate * @return static */ public static function startDateCannotBeAfterEndDate(DateTimeInterface $startDate, DateTimeInterface $endDate) { return new static(trans('plugins/analytics::analytics.start_date_can_not_before_end_date', [ 'start_date' => $startDate->format('Y-m-d'), 'end_date' => $endDate->format('Y-m-d'), ])); } }
[+]
..
[-] InvalidConfiguration.php
[edit]
[-] InvalidPeriod.php
[edit]