I am noticed that if i uses folding for PHP functions Notepad++ hides trail bracket, like that:
function foo()
  {
  echo "hi!";
  }

after folding:
function foo()
  {
--------------------------------------

But this appearance confuses me, when i looks at text i subconsciously expects close bracket somewhere below screen.

Is there any way to configure Notepad++ for anoter folding style, like that:
function foo()
  {
  }
--------------------------------------
???