I like to fold some parts of php code in PhpStorm IDE with in curly braces( {} ) A sample code:
$a='a';
$b='b';
{
$repeating_var1='1';
$repeating_var2='2';
}
How can I define to PhpStorm to fold those part that is in curly brace? As you know PhpStorm does not recognize these part (last lines in curly braces) as foldable.