Pablo Largo Mohedano

Results 84 comments of Pablo Largo Mohedano

@rvrbk Could you please share more info, like how does your folder tree looks like?

I'm struggling my head because all my ideas are dependent of the messages sent. for example, to match `LoginController` I would send this message: `[{"name":"login","data":{"user":"foo", "password":"bar"}}]` and I would register...

Maybe feeding the kernel with a custom driver for each project to convert messages to Drift models?

Would this solve the use-case for checkstyle reports? https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues/3601

It's also transforming ```php /** @var self */ return new self(); ``` into ```php /* @var self */ return new self(); ``` and using php-cs-fixer with phpstan is quickly becoming...

I think it can be related to PHP 8.3 and weird interactions with xdebug? # PHPStan 1.11.5 - PHP 8.3 xdebug enabled in config, not disabled in CLI, fast print...

> xdebug enabled in config, not disabled in CLI, fast print of the loading bar: > > ``` > # /etc/php/8.3/mods-available/xdebug.ini > zend_extension=xdebug.so > ``` > ``` > $ time...

I think I've narrowed it down: my PHP 8.3 installation came with this configuration: ```ini # /etc/php/8.3/cli/conf.d/10-opcache.ini ; configuration for php opcache module ; priority=10 zend_extension=opcache.so opcache.jit=off opcache.enable_cli=1 opcache.interned_strings_buffer=16 opcache.jit_buffer_size=256M...