xwillq
xwillq
Hey! I found different approach for fixing this problem. I use this as my `run-exec`: ```shell [ $(jq ".[\"$(basename $0)\"].enabled" captainhook.json) != 'true' ] || ``` It checks if hook...
Adding `@mixin \Illuminate\Database\Query\Builder` to the stub of Eloquent builder solved the issue for me. Could it be than PHPStan reads docblocks only from stubs, if they are provided, and completely...
If I understood it correctly, this bug is caused by #1295. I proposed solutions to this in #1315. Second solution, rollback the PR and fix that issue in some other...
Hey @szepeviktor! I believe I've found the bug. Before this PR, `NunoMaduro\Larastan\Methods\Kernel` checked for macros and it also checks for facades. When it found a facade, it send underlying class...
In that case what about configuring what would be sent immediately, and what would be deferred? Yeah, sending errors is important, but reporting lazy loading violations isn't worth tanking performance,...
In my case this doesn't require immediate fix. I already know that our legacy code has a lot of N+1 and lazy loading, so I'll probably just disable it. But...
> I think adding this logic to de-duplicate repeat reports inside a single request would already be an improvement Yeah, I think this simple deduplication would be much better than...
Karabiner maps function keys to media controls after all other modifications ([see this](https://karabiner-elements.pqrs.org/docs/manual/misc/event-modification-chaining/)). That's why you can't use `consumer_key_code` in `from` section. Because of this, the only way to remap...
I believe the culprit is `\Sentry\FrameBuilder::getFunctionArgumentValues`. It only takes values passed for defined parameters based on their position, which means it completely ignores parameters that weren't defined or parameters that...
Also, `\Sentry\FrameBuilder::getFunctionArgumentValues` ignores nulls, since it uses `isset()` to check if argument was passed to the function, and it doesn't use default values if nothing was passed to the function....