PSR和构造函数可见性

时间:2016-09-27 14:09:14

标签: php constructor visibility psr-2

根据PSR-2

  

必须在所有属性和方法上声明可见性

__construct,它的具体功能如何呢?我想知道在我们使用public时是否也应默认将其标记为PSR

1 个答案:

答案 0 :(得分:3)

是的,您还应声明__construct()方法的可见性。在某些情况下,__construct不像

那样公开
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    tmpFilePath=intent.getStringExtra("receivedFilePath");
    ...
}