Tom Klingenberg

Results 137 comments of Tom Klingenberg

PHP 8 compat for symfony-autocomplete dependency in #1167

Ah, okay, well it would be convenient to create the db then as we can read the db name from the Magento configuration. Also we could add a create database...

I would also say that always cleaning cache is not good for `config:set`. For example with extensions like `hs:ccd:import` which runs `config:set` internally, it would always clean the cache -...

From what I know, the allowed country list can change randomly and therefore customers with countries not in the - at some point in time - country list are a...

With this context it's much better understandable to me what you're looking for and why. This needs filtering in the \N98\Magento\Command\Customer\CreateDummyCommand::createAddress method I think

I think this is technically possible but requires an implementation. Any interest in taking care of this?

I quickly checked, `exec` is immune to STDIN: $ echo "hello" | php -r 'exec("cat");' However with `passthru` it worked: $ echo "hello" | php -r 'passthru("cat");' hello I would...

Thanks for the suggestion. I like the idea. We also have some meta-issues open on that topic, one is a reproducible phar build so that building the phar from our...

@Flyingmana: Can you make a small suggestion / example how a usage could look like to magerun? I just reviewed this a little and I think the suggestion is worth...

shouldn't we be more strict and not only warn but actually prevent to execute the command? when you see the warning and still execute, it might be already too late....