'jfb', 'license' => $this->get_licence(), 'prompt' => $this->prompt, ); } /** * @return string */ public function get_licence(): string { if ( defined( 'JFB_AI_LICENSE' ) ) { return JFB_AI_LICENSE; } return $this->license; } /** * @param string $license */ public function set_license( string $license ) { $this->license = $license; } /** * @param string $prompt */ public function set_prompt( string $prompt ) { $this->prompt = $prompt; } /** * @return string */ public function get_prompt(): string { return $this->prompt; } }