Caleb White
Caleb White
@fabriciojs what you're describing is fixed by #1782
I think this issue can be closed? If your database driver does not support booleans than either: 1) cast to a `boolean` on the model, or 2) don't use the...
Ok, the files somehow got corrupted so I replaced them and the game works fine.
Interesting---I have this Laraval helper function that I was trying to add a condition return type to: ```php if (! function_exists('logger')) { /** * Log a debug message to the...
Ah, this seems to work so I guess it's just not recognizing the absence as a `null` value: 
Thoughts @amaanq? The path is correct from the viewpoint of `scanner.c` but the relative path is likely being applied where `tree-sitter build-wasm` finds the `grammar.js` (or wherever it is building...
@lucario387,@clason this was fixed in https://github.com/nvim-treesitter/nvim-treesitter/pull/6293 so this can be closed
I believe it has to do with the `declaration_list` from the `object_creation_expression` being inside the `return_statement` Adding the below section to the indents seemed to fix the issue, but I'm...
Also note that indentation is broken when returning a closure: ```php class Foobar { public function __invoke(): Closure { return function () { // double indentation here }; } }...
@Akasurde, yes that's what I have now, however, there's no reason why I should have to define the vault client three separate times if I'm using the same client. Ideally,...