/**
  * Get the music setting.
  * @param bool $multicall
  * @return Structures\Music
  */
 function getForcedMusic($multicall = false)
 {
     if ($multicall) {
         return $this->execute(ucfirst(__FUNCTION__), array(), $this->structHandler('Music'));
     }
     return Structures\Music::fromArray($this->execute(ucfirst(__FUNCTION__)));
 }
예제 #2
0
 /**
  * Get the music setting.
  * @return Structures\Music
  */
 function getForcedMusic()
 {
     return Structures\Music::fromArray($this->execute(ucfirst(__FUNCTION__)));
 }