Scalr\Model\Entity\Account\TeamEnvs::getTeam PHP 메소드

getTeam() 공개 메소드

Gets Team entity
public getTeam ( ) : Team | null
리턴 Team | null
    public function getTeam()
    {
        if (!empty($this->teamId) && empty($this->_team)) {
            $this->_team = Team::findPk($this->teamId);
        }
        return $this->_team;
    }
TeamEnvs