标签: php constructor visibility psr-2
根据PSR-2
必须在所有属性和方法上声明可见性
但__construct,它的具体功能如何呢?我想知道在我们使用public时是否也应默认将其标记为PSR?
__construct
public
PSR
答案 0 :(得分:3)
是的,您还应声明__construct()方法的可见性。在某些情况下,__construct不像
protected void onNewIntent(Intent intent) { super.onNewIntent(intent); tmpFilePath=intent.getStringExtra("receivedFilePath"); ... }