Contao\Message::hasRaw PHP Method

hasRaw() public static method

Check if there are raw messages
public static hasRaw ( string $strScope = TL_MODE ) : boolean
$strScope string An optional message scope
return boolean True if there are raw messages
    public static function hasRaw($strScope = TL_MODE)
    {
        return \System::getContainer()->get('session')->getFlashBag()->has(static::getFlashBagKey('raw', $strScope));
    }