Oleg Lemesenko
Yii2 Framework Support plugin developer
- 活动总数 24
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 10
-
创建于 Replacement from DataSourceUiUtil.performAutoSyncTask
已回答Now performAutoSyncTask in DataSourceUiUtil and DataSourceUtil deprecated and marked for removal. Any other suggestions on how to initiate a data source update from the plugin code? -
创建于 How to get icon of column or table in new Database plugin implementation?
In current EAP version Database plugin had changed a lot.Now, this code does not work: if (field instanceof DasColumn) { if (column instanceof DbColumnImpl) builder = builder.withIcon(... -
创建于 Is there is any way to emulate database in Db Connections in UnitTests?
Part of the functionality of my plugin uses database structure obtained from a database connection.To do Unit tests I create a fake database using code.But in last versions of Database plugin DataS... -
创建于 Project wise settings with PersistentStateComponent
已回答Hi, I need to save settings separately for every project. I tried various combinations of annotations, but all the time settings are visible to all projects.How to save settings for every project s... -
创建于 Does this code access index (PHPStorm) ?
Does this code access PhpStorm Index ? ((VariableImpl) variable).resolve(); In general I need to find declaration of a variable to read some properties of it without using PhpStorm Index. -
创建于 How to get Parents of ClassReference without using index (PHPStorm)?
*PhpStorm relatedI am trying to implement PhpTypeProvider3.getType() method, where I evalute such expression // PHP languageAddress::find()->where('cond')->one() //returns ActiveRecord class, but ... -
创建于 How to set a type for a variable
I develop Yii2 plugin (PHP) and want to set variables' types for special cases. For example $obj = Yii::createObject(MyClassname::class);classObject returns Object according to PhpDoc, but in reali... -
创建于 Class definition not updated after PhpDoc modified
已回答Class definition updated with significant delay after I add @property PhpDoc attribute.Is that expected behavior? Example:https://cloud.githubusercontent.com/assets/1706065/24413293/4e58fdba-13db-... -
创建于 Special syntax in PhpDoc
Hi, we need functionality to process double brackets as @see annotation in PhpDoc. For example instead @see class::method we want to have [[class::method]] . This method is used in Yii framework an...