Added a missing __construct doc comment.
(But why is phpcs complaining about this now and it wasn't before??)
This commit is contained in:
parent
98a25ffd67
commit
15d505864f
|
@ -36,6 +36,9 @@ class ClassWithDependencies {
|
|||
*/
|
||||
public $dependency_class = null;
|
||||
|
||||
/**
|
||||
* Creates a new instance of the class.
|
||||
*/
|
||||
public function __construct() {
|
||||
self::$instances_count++;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue