fix: Private methods cannot be final as the are never overriden

This commit is contained in:
Guillermo Pages
2021-08-30 23:37:36 +02:00
parent 00b954e204
commit 6069a65956

View File

@@ -57,5 +57,5 @@ class Connection
return self::$req;
}
final private function __clone() {}
private function __clone() {}
}