Evgeniy
Evgeniy
What about adding some command like `php app/console doctrine:query:sql`? It will be comfortable for executing some simple queries in console w\o any db tools
A lot of times during the development we need to load some nullable refs with `LEFT JOIN`. In current state Cycle Select don't provide any simple method for this. Now...
### Description We have webhook on upload any object in specific dir. It works for uploaded(created) directory and we've detected that if you create directory this webhook send this key...
In [ValidationBootloader.php](https://github.com/spiral/framework/blob/master/src/Framework/Bootloader/Security/ValidationBootloader.php) you have alias like `'required' => 'type::notEmpty',` at line 90 This alias is not correct by system logic. Required and not empty are not equals. required means that...
## Description It will be useful if you will add command to display roles with assigned rules. ## Example Simplified example: ```php foreach ($rbac->getRoles() as $role) { echo \sprintf("%s:\n", $role);...
Sometimes when you are working with PATCH-requests you need to work with nullable fields. And if you want to make existing value in db to null you must send it...
### Description In case when you need using default `search` filter in DataGrid by nullable field I've detected that Filter uses INNER JOIN on building Select Query. If values are...
### Description In case when you need sorting in DataGrid by nullable field I've detected that Sorter uses INNER JOIN on building Select Query. If values are nullable this moment...
It will be great if you can add some more flexibility to filters. I am talking about some control on errors list from filters. Now we have private property private...
I've detected some strange logic on generating index for HasOne relation. I have 2 entities: ``` class Item extends AbstractEntity { /** * @Cycle\Relation\HasOne( * target="ItemInfo ", * outerKey="item_id", *...