Clint Winter
Clint Winter
Here's an addition to @towry's for `lsp_document_symbols`, `lsp_dynamic_workspace_symbols`, and `buffers`. Buffers:  Document symbols:  Workspace symbols: ![Screenshot...
At least for Laravel, any logic in a custom request class that uses route-model binding is broken. For example: https://laravel.com/docs/9.x/validation#authorizing-form-requests ```php use App\Models\Comment; public function authorize() { return $this->user()->can('update', $this->comment);...
The code sample I used would be inside a request class. It would be attempting to access the comment via route-model binding. For example a route like `Route::patch('/comments/{comment}', ...)`. The...
Good catch! Let's update the readme instead as it's more standard for the tag to have a unique name.
The versions are very close other than the few comments I left, so I was trying to be nice and allow you to make a successful contribution rather than undercut...