Contao\CoreBundle\Security\User\ContaoUserProvider::isFrontendUsername PHP 메소드

isFrontendUsername() 개인적인 메소드

Checks if the given username can be mapped to a front end user.
private isFrontendUsername ( string $username ) : boolean
$username string
리턴 boolean
    private function isFrontendUsername($username)
    {
        return 'frontend' === $username && $this->isFrontendScope();
    }