Scalr\Model\Entity\Farm::appendTeams PHP Method

appendTeams() public method

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