Add correct amount of spaces and tabs inside code.
format_code( string $text ) : string
$text (string) (Required) The text you want to format.
(string) Formatted code.
$text = ' Indent goes here.';
echo format_code($text);
// Indent goes here.