>
> On Aug 9, 2020 at 3:00 PM, <Deleu (mailto:[email protected])> wrote:
>
>
>
> I like and make use of interpolation, but I can't think of a use case for
> this. Is there any valid use case that would benefit from this fix regardless
> of personal preference? In other words, where would one use string
> interpolation with an empty string being a valid case?
>
>
While I agree with Jordi and Nikita that language consistency is the important
metric, here is a valid case I come across frequently; the need to output
optional CSS classes since you ask, fwiw:
>
>
>
>
>
>
> <?php
$card_html = <<<HTML <div id="card-{$card->id}" class="card {$card?->css}">
{$card->content} </div> HTML;
-Mike