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;
    }