Scalr\Model\Entity\Farm::appendTeams PHP 메소드

appendTeams() 공개 메소드

Appends Teams list
public appendTeams ( Team $team ) : Farm
$team Scalr\Model\Entity\Account\Team The Team entity
리턴 Farm
    public function appendTeams(Team $team)
    {
        $this->_teams[$team->id] = $team;
        $this->_teamsChanged = true;
        return $this;
    }