mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 06:15:19 +08:00
Enable phpdoc_summary
rule in php-cs-fixer config (#14675)
* Enable `phpdoc_summary` rule in php-cs-fixer config. * Fix case in "PHPDoc".
This commit is contained in:

committed by
Carsten Brandt

parent
1501c659ac
commit
5a8c3d537b
@ -87,6 +87,7 @@ class BaseObject implements Configurable
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* The default implementation does two things:
|
||||
*
|
||||
* - Initializes the object with the given configuration `$config`.
|
||||
@ -222,6 +223,7 @@ class BaseObject implements Configurable
|
||||
|
||||
/**
|
||||
* Returns a value indicating whether a property is defined.
|
||||
*
|
||||
* A property is defined if:
|
||||
*
|
||||
* - the class has a getter or setter method associated with the specified name
|
||||
@ -241,6 +243,7 @@ class BaseObject implements Configurable
|
||||
|
||||
/**
|
||||
* Returns a value indicating whether a property can be read.
|
||||
*
|
||||
* A property is readable if:
|
||||
*
|
||||
* - the class has a getter method associated with the specified name
|
||||
@ -259,6 +262,7 @@ class BaseObject implements Configurable
|
||||
|
||||
/**
|
||||
* Returns a value indicating whether a property can be set.
|
||||
*
|
||||
* A property is writable if:
|
||||
*
|
||||
* - the class has a setter method associated with the specified name
|
||||
|
Reference in New Issue
Block a user