The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
21
if ( empty( $this->license_data ) ) {
22
return parent::get_license_key();
23
}
24
25
return $this->license_data->license_key;
26
}
27
28
/**
29
* Option name in which individual license data is stored.
30
* This method should be called only after setting the add-on name.
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.