Skip to content

Commit 98e00a7

Browse files
committed
Sprintf to printf replacement
1 parent d03a6b3 commit 98e00a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/using_variadic_arguments_in_behat_steps_definitions.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Feature: Using variadic arguments in Behat steps definitions
1616
*/
1717
public function iUseAStepWith(...$variadic)
1818
{
19-
echo sprintf('Number of passed arguments: %d', count($variadic));
19+
printf('Number of passed arguments: %d', count($variadic));
2020
}
2121
}
2222
"""

0 commit comments

Comments
 (0)