presets[$preset] = $presetClass; } $this->preset = $preset; return $this; } /** * Create a new instance of the configured preset. * * @return object */ public function newPreset() { return new $this->presets[$this->preset]; } }