Что означают такого рода комментарии /**
* @inheritdoc
*/ и как их ставить в своем коде в phpstorm ???
/**
* This is the model class for table "img".
*
* @property integer $id
* @property string $category
* @property string $url
* @property string $description
* @property string $alt
*/
class Img extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'img';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['category', 'url', 'description', 'alt'], 'required'],
[['category', 'url', 'description', 'alt'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'category' => 'Category',
'url' => 'Url',
'description' => 'Description',
'alt' => 'Alt',
];
}
}