Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Implemented
-
12.0
Description
NetBeans can rename local variables and private fields and methods by selecting it and Ctrl-R and editing the name.
Same function is not supported for private class constants.
Pressing Ctrl-R always displays rename dialog.
Example code:
class PrivateConstant { private const PATH = '/'; private $field; private function getField() { return $this->field; } function getPath(): string { return self::PATH; } }