There must be no sprintf
calls with only the first argument.
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
- Using the @PhpCsFixer:risky rule set will enable the
no_useless_sprintf
rule. - @Symfony:risky
- Using the @Symfony:risky rule set will enable the
no_useless_sprintf
rule.