How to set up code refactoring, in particular for variables, in the sublime editors and JetBrains products?
JS example:
var name = 'a', secondName = 'b'; var obj = { name: 'a', secondName: 'b' } PHP example
public $name = 'a'; public $secondName = 'b'; And after running the code refactoring:
JS example:
var name = 'a', secondName = 'b'; var obj = { name : 'a', secondName: 'b' } PHP example
public $name = 'a'; public $secondName = 'b';