getValue() > $arg; } /** * Tests if input date is later than argument date * * @param BaseControl $input Form input. * @param string $date Validation argument. * * @return bool */ public static function dateIsLater( BaseControl $input, string $date ): bool { return strtotime( $input->getValue() ) > strtotime( $date ); } }