Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
8.2
-
None
-
None
-
Using netbeans with php support in Laravel environment.
Description
I'm trying to use Netbeans 8.2 to develop a laravel application. I noticed that there are some inconsistencies on brace/parenthesis matching on certain situations. For example when I type the last brace in
Route::get('app/test', function() {)
and press enter I expect
Route::get('app/test', function() {
})
but I get
Route::get('app/test', function() {
)
And when I type the same, but inserting a space between the brace and the parenthesis, like this
Route::get('app/test', function() { )
and when I put the cursor right after the brace and type enter, the result is
Route::get('app/test', function() {
)
}
Note where both the ending brace and ending parenthesis are.