/**
  * Constructor.
  *
  * @param HttpKernelInterface $kernel
  * @param HttpUtils           $httpUtils  An HttpUtils instance
  * @param string              $loginPath  The path to the login form
  * @param Boolean             $useForward Whether to forward or redirect to the login form
  */
 public function __construct(HttpKernelInterface $kernel, HttpUtils $httpUtils, $loginPath, $useForward = false)
 {
     parent::__construct($kernel, $httpUtils, $loginPath, $useForward);
 }