Matthias Nagel
Matthias Nagel
> The above screenshot is a little unfortunate because it doesn't show how sharing with anonymous users is to be achieved. Is there still a big "Public" slider? If not,...
I have checked #635, #643 and #781. These bugs are definitely covered by the newly added authorization tests.
> Considering closing this, squash and open a new PR in order to have a clean history and remove resolved comments. :') I don't mind either way. But in case...
I'm fine with that feature, too. @darxmurf If you wan't to implement it, go ahead. Unfortunately, I am too busy with other features which I consider more important. But generally,...
First, there is no union type. I assume you mean intersection type. However, this is not the problem which this issue is about. The problem is the first reported error...
This is exactly as in the the example. The template: ```php use Illuminate\Database\Eloquent\Builder; /** * @template TModelClass of \Illuminate\Database\Eloquent\Model * @extends Builder */ class CustomBuilder extends Builder { } ```...
That is not going to happen. Rather we migrate the whole project away from Laravel to Symfony. Not only due to this problem at hand, but because we had a...
BTW, I wonder why https://github.com/nunomaduro/larastan/blob/4cbe40866c2c86bbd27f2424ab735ac6ad10338c/src/Methods/BuilderHelper.php#L201 uses `getNativeMethod` on the reflection of the model class. Again, my gut feeling tells me that it should be `getMethod`. I haven't spent much time...
I updated my example at https://github.com/nagmat84/larastan-example. It is now even more trivial and does not use any interface or any intersection type. But the errors are still there. IMHO this...
> I cannot reproduce `Call to private method whereBetween() of parent class ...` error on the example repo. Sorry, for that. I pushed an even smaller MWE after @szepeviktor [suggested...