Caleb White
Caleb White
I'm trying `wezterm` out for the first time and am running into this issue when using the latest app image (20240203-110809-5046fc22) (regular or nightly, doesn't matter). The only thing that...
@cfroystad, @amaanq, I've been digging into this and here are my findings, the BLUF is that I don't think we need to support *every* char that PHP accepts as a...
Ah, very interesting. But I guess this raises several questions: - does `\u00a0` need to be in the extras and what could be some side-effects of removing it? - do...
I think option 1) would be preferable as that would yield user improvements in other areas as well (such as variable rename)
So I have this method: ```php /** @param TReportable $reportable */ protected function setReportable(Reportable $reportabl): void { $this->reportable = $reportabl; } ``` Placing my cursor on the parameter and performing...
I've also had periods when phpactor just runs away and becomes painfully slow and I have to manually kill the processes. I also work on a large codebase though. I...
> Setting outsource to false did solve the CPU problem on my config (no more process forks). What is the implication of not outsourcing (when would be a case when...
What happens if you turn it off then? Does phpactor no longer have diagnostics?
PHPStan also has an issue with `$this` inside a closure. I just use `test()` instead of `$this` (works for properties too): ```php
It looks like the namespace is somewhat detected in the `use` autocomplete, but not everything is found.    