You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
expire-email-validation/AuthserverExpireEmailValida...

14 lines
334 B

<?php
namespace vierbergenlars\AuthserverExpireEmailValidationBundle;
use App\AppEvents;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class AuthserverExpireEmailValidationBundle extends Bundle
{
public static function hasUserCheckEvent()
{
return defined(AppEvents::class . '::SECURITY_USER_CHECK_POST');
}
}