标签恢复,待原作者修正 * * @author mybsdc * @date 2019/11/29 * @time 10:52 */ namespace Luolongfei\Libs; use Colors\Color; class PhpColor extends Base { /** * @var Color */ protected $colorInstance; public function init() { $this->colorInstance = new Color(); // Create my own style $this->colorInstance->setUserStyles([ // '自定义标签' => 'red', ]); } /** * @return Color */ public function getColorInstance() { return $this->colorInstance; } }