Caleb White

Results 344 comments of 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. ![image](https://github.com/phpactor/phpactor/assets/4176520/da9fbc1d-1ab7-4523-9721-2572720ec51f) ![image](https://github.com/phpactor/phpactor/assets/4176520/77eb05ca-1866-43c2-bd10-96a69c3215b1) ![image](https://github.com/phpactor/phpactor/assets/4176520/22a53223-ece1-4553-8494-82d2f2c713f8) ![image](https://github.com/phpactor/phpactor/assets/4176520/44b3da80-c9be-4c9f-bb24-ce8016a14a92)