Feedback equal #region Visual Studio

4

Is there a comment like #region of Visual Studio in PHP with NetBeans?

    
asked by anonymous 12.08.2015 / 17:52

1 answer

4

Fortunately it does not. This was a C # bug. But you can get similar effect specifically with your editor :

// <editor-fold>
   Your code goes here...
// </editor-fold>

Works with PHPStorm also.

    
12.08.2015 / 17:55