Newscoop\Services\BlogService::getSection PHP Method

getSection() public method

Get blog section for given user
public getSection ( User $user ) : Section | null
$user Newscoop\Entity\User
return Section | null
    public function getSection(User $user)
    {
        $blogInfo = $this->getBlogInfo($user);
        return isset($blogInfo) ? $blogInfo->getSection() : null;
    }