You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Junichi Yamamoto (JIRA)" <ji...@apache.org> on 2019/07/20 13:16:00 UTC

[jira] [Created] (NETBEANS-2873) Suggest converting to combined assignment operators

Junichi Yamamoto created NETBEANS-2873:
------------------------------------------

             Summary: Suggest converting to combined assignment operators
                 Key: NETBEANS-2873
                 URL: https://issues.apache.org/jira/browse/NETBEANS-2873
             Project: NetBeans
          Issue Type: New Feature
          Components: php - Editor
            Reporter: Junichi Yamamoto
            Assignee: Junichi Yamamoto


e.g. 
{code}
// ??
$string = $string ?? "value"; // before
$string ??= "value"; // after

// +
$x = $x + 100; // before
$x += 100; // after{code}
 



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

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