junichi11 opened a new pull request, #5731:
URL: https://github.com/apache/netbeans/pull/5731

   - https://github.com/apache/netbeans/issues/4611
   - Fix unit tests
   
   #### Example
   ```php
   <?php
   
   class GH4611Class
   {
   
   private int $field;
   
   public function method1() {
   }
   
   /**
    * Test.
    */
   public function method2() {
   }
   
   }
   ```
   ##### Formatting Options:
   
   
![nb-php-gh-4611-blank-lines-options](https://user-images.githubusercontent.com/738383/228271325-08588318-9090-4ab5-8dcf-bd2b79adf151.png)
   
   
![nb-php-gh-4611-braces-options](https://user-images.githubusercontent.com/738383/228271382-25e4f395-2813-4e08-9d8d-741bfe5edd5a.png)
   
   ##### Before
   ```php
   <?php
   
   class GH4611Class
   {
       private int $field;
   
       public function method1() {
           
       }
   
       /**
        * Test.
        */
       public function method2() {
           
       }
   
   }
   ```
   
   ##### After
   ```php
   <?php
   
   class GH4611Class
   {
       private int $field;
   
       public function method1() {
           
       }
   
       /**
        * Test.
        */
       public function method2() {
           
       }
   }
   ```
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to