nextras / orm-intellij

Nextras ORM Plugin for PhpStorm
https://plugins.jetbrains.com/plugin/7912-nextras-orm
MIT License
13 stars 2 forks source link

Support nested findBy reference privider & autocompletion #83

Open hrach opened 9 months ago

hrach commented 9 months ago

It does not work where the array is nested, e.g.:

$authors = $this->orm->authors->findBy([
    ICollection::AND,
    ['books->title' => 'Book 1'],
]);