for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace GameScan\WoW\Entity\Player;
trait Guild
{
abstract public function getEntityInformations();
abstract public function retreiveField($fielName);
public function guildName()
$this->retreiveField("guild");
return $this->getEntityInformations()->guild->name;
}
public function guildRealm()
return $this->getEntityInformations()->guild->realm;
public function guildBattlegroup()
return $this->getEntityInformations()->guild->battlegroup;
public function guildMembers()
return $this->getEntityInformations()->guild->members;
public function guildAchievementPoints()
return $this->getEntityInformations()->guild->achievementPoints;
public function guildEmblem()
return $this->getEntityInformations()->guild->emblem;