Do PHP interfaces have properties?

前端 未结 3 634
后悔当初
后悔当初 2021-02-11 11:45

Do interfaces in PHP have properties, or do they only have methods?

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-11 12:39

    You can declare properties in DocBlock for the interface. IDE's will then hint those properties for the interface (PhpStorm does) but this will not force the actual implementation of these fields in the implementing class. E. g.

    /**
     * @property string $password
     * @property string $username
     */
    interface IUserDocument
    {
    
    
    }
    

提交回复
热议问题