Tac Tacelosky
Tac Tacelosky
Until the documentation is written, is there an example of a trivial command using input attributes? Thx.
Here's a working example: ```bash symfony new --version=next --webapp test-console7.3 && cd test-console7.3 bin/console make:command lucky:number cat > src/Command/LuckyNumberCommand.php
I forget when the ?? (null coalese) operator was introduced, but a simple fix would be $this->transformers['compound']['transformer']??null
I've tracked this down to the transformers not being loaded during the compiler pass. I haven't solved it, and when I try to replicate the problem is a small and...
I went down a refactoring path that fixed that (injecting the transformers during the compiler pass), but broke something else in the process. I'm traveling now, but when I get...
Very cool, I forgot about that! Can you submit a PR?
Would dropping support for php 7 require new release (2.0)? I would imagine so.
yes, though generally a bump like changing the minimum PHP version is also tied to a version bump. Additionally, we could rename some of the methods to indicate which ones...
Is there a branch that has the EnqueuedTask class written? I think the ArrayAccess idea is a pretty cool way to maintain b/c.
I made some progress by following https://stackoverflow.com/questions/1759137/domelement-cloning-and-appending-wrong-document-error I'm not sure what I'm doing, though. ```php $node = $this->body->ownerDocument->importNode($overlay, true); $this->body->appendChild($node); ```