php - How to recompose my codes on PhpStorm -
is there way beautify , understandable php code on phpstorm. have tried reformat code not working.
for example; when write below line
$example = array("key_one" => "value one", "key_two" => "value two", "key_three" => "value three"); is there shortcut or settings on menu. code should recompose below.
$example = array( "key_one" => "value one", "key_two" => "value two", "key_three" => "value three" ); i hope have made sufficient explanation.
thank you.
it alt + ctrl + l. @ default keymap, found under help->default keymap reference
php phpstorm
No comments:
Post a Comment