transient_strategy = $transient_strategy; } /** * Create a new License API Response from the given data. * * @since 2.5.11 * * @param mixed ...$args * * @return GF_License_API_Response */ public function create( ...$args ) { $data = $args[0]; $validate = isset( $args[1] ) ? $args[1] : true; return new GF_License_API_Response( $data, $validate, $this->transient_strategy ); } }