When writing the PHP start tag in Visual Studio Code and pressing control+save my code becomes in the same line
like exactly this:
<?php
if ( $data->get( 'layout' ) == 'right' ) {
do_action( 'theme_sidebar', $data );
}
?>
I want it to be like
<?php
if ( $data->get( 'layout' ) == 'right' ) {
do_action( 'martin_sidebar', $data );
}
?>