private -> public

This commit is contained in:
Mario
2024-01-13 19:10:44 +00:00
parent c597017402
commit 6df98f2fad

View File

@@ -5846,10 +5846,10 @@ class UniqueNamer {
* @param prefix the prefix to use ('<prefix><counter>').
*/
private $prefix;
private $counter;
private $existing;
private $order;
public $prefix;
public $counter;
public $existing;
public $order;
public function __construct($prefix) {
$this->prefix = $prefix;