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:
Robert Korulczyk
2017-08-21 11:19:35 +02:00
committed by Carsten Brandt
parent 1501c659ac
commit 5a8c3d537b
248 changed files with 624 additions and 510 deletions

View File

@ -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