mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
* Fix 500 on guests visiting profile pages (#3665) * release: 2.2.3 --------- Co-authored-by: tadhgboyle <tadhgsmboyle@gmail.com> Co-authored-by: Sam <samerton@users.noreply.github.com>
10 lines
166 B
PHP
10 lines
166 B
PHP
<?php
|
|
|
|
return new class() extends UpgradeScript {
|
|
public function run(): void
|
|
{
|
|
$this->runMigrations();
|
|
|
|
$this->setVersion('2.2.3');
|
|
}
|
|
};
|