How to automatically generate parameter assignations in class constructors in PhpStorm?

后端 未结 3 2073
花落未央
花落未央 2021-02-19 00:03

Does anyone know how to save typing in PhpStorm when you create a class constructor and you want to assign all the parameters to the respective class fields? I write it by hand

3条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-19 00:12

    In case you want to have PhpStorm generate the constructor too you can go to Code -> Generate -> Constructor. This will take care of inserting the parameters you want as well as their initialization.

    Or press Alt+Insert and choose Constructor...

提交回复
热议问题