I'm working with the PHPStorm IDE. I have a method which fetches a few columns from my mysql db and returns an object which contains these values. Is there a possibility to write a PHPDoc comment, which is type hinting the specific values? So that if I type
self::getCommissionFromCacheOrDb($provider_id, $type, $platform)->
The IDE will show me a few variables, which I've declared in the PHPDoc comment above the method.
f.e. the method.
public static getValuesFromDb($provider_id){
$data = self::find()->where(['provider_id' => $provider_id,
'revision' => '0000-00-00 00:00:00',
'platform' => $platform,
'type' => $type])
->select(['commission',
'direct_commission',
'super_commission',
'super_commission_maturity',
'valid_from',
'valid_to'])
->one();
return $data;
}
I could imageine some PHPDoc block like
/**
* @return $direct_commission
* @return @super_commission
* @return @super_commission
* @return @valid_from
* @return @valid_to
*/
but unfortunately this doesn't work. Is it realy a must to write a getter and setter for each variable or can this be done by any PHPDoc way?
Any help would be appreciated.
Thanks
I'm not sure about PHPStorm, but Netbeans accepts pipe sign: