Added a missing __construct doc comment.

(But why is phpcs complaining about this now and it wasn't before??)
This commit is contained in:
Nestor Soriano 2023-06-22 09:24:06 +02:00
parent 98a25ffd67
commit 15d505864f
No known key found for this signature in database
GPG Key ID: 08110F3518C12CAD
1 changed files with 3 additions and 0 deletions

View File

@ -36,6 +36,9 @@ class ClassWithDependencies {
*/
public $dependency_class = null;
/**
* Creates a new instance of the class.
*/
public function __construct() {
self::$instances_count++;
}