PlaydarResolver::getSettings PHP Method

getSettings() public method

Settings object for this resolver, reported when we start
public getSettings ( )
    public function getSettings()
    {
        $settings = (object) array('_msgtype' => 'settings', 'name' => $this->name, 'targettime' => $this->targetTime, 'weight' => $this->weight, 'localonly' => isset($this->localonly) ? $this->localonly : TRUE);
        return $settings;
    }