Contao\CoreBundle\Framework\ContaoFramework::canSkipTokenCheck PHP Method

canSkipTokenCheck() private method

Checks if the token check can be skipped.
private canSkipTokenCheck ( ) : boolean
return boolean True
    private function canSkipTokenCheck()
    {
        return null === $this->request || 'POST' !== $this->request->getRealMethod() || !$this->request->attributes->has('_token_check') || false === $this->request->attributes->get('_token_check');
    }