Contao\FrontendCron::__construct PHP Method

__construct() public method

Initialize the object (do not remove)
public __construct ( )
    public function __construct()
    {
        parent::__construct();
        // See #4099
        if (!defined('BE_USER_LOGGED_IN')) {
            define('BE_USER_LOGGED_IN', false);
        }
        if (!defined('FE_USER_LOGGED_IN')) {
            define('FE_USER_LOGGED_IN', false);
        }
    }