no_useless_sprintf
There must be no sprintf calls with only the first argument.
sprintf
Risky when if the sprintf function is overridden.
--- Original +++ New <?php -$foo = sprintf('bar'); +$foo = 'bar';
The rule is part of the following rule sets:
@PhpCsFixer:risky
@Symfony:risky