Yurii K.
Yurii K.
hello can you please elaborate your question so we may probably find a solution. As I understand now, you want something like ``` ---table1--- col1 col2 --table2-- col
I see. thank you for your response. I will clarify my point a bit more. This package changes behavior for illuminate\database package, and illuminate\database supports next database engines  On...
hello it looks like you know this subject very closely. maybe you can make a PR for it? afaik, this is something that cannot be done on compoships but only...
hello can you please retest your case on master branch? I have added some test coverage for your case (https://github.com/topclaudy/compoships/pull/108) but it looks like it was already fixed in master....
can you please check your case on master branch? There were added some fixes recently, maybe your case was fixed regards
I didn't copy that part of config, my bad ``` 'bundles' => [ // reset Yii2 'yii\web\YiiAsset' => [ 'sourcePath' => null, 'js' => [] ], 'yii\web\JqueryAsset' => [ 'sourcePath'...
yes, it was like this before, I just didn't copy whole config. Pushed my code, here it is config https://github.com/yurii-github/yii2-mylib/blob/category/app/config/config.php app asset https://github.com/yurii-github/yii2-mylib/blob/category/app/assets/App.php (forces load from config in Gii module)...
today I came across this stuff myself. Any solution/workaround to this? I have checked vfsStream code and some lock logic is in place but I am not sure where to...
``` public function afterValidate() { /** @var ActiveRecord[] $translations */ $translations = $this->owner->{$this->translationRelation}; $attributeNames = null; if (!empty($translations)) { // get 1st, all models are same $attributeNames = array_keys($translations[0]->getAttributes()); $attributeNames...
it is not related my point is currently all relations get unset on refresh at _BaseActiveRecord.php_ ``` protected function refreshInternal($record) { if ($record === null) { return false; } foreach...