Fixed listener version number..

This commit is contained in:
Cüneyt Şentürk 2022-11-03 11:51:38 +03:00
parent 8dfacd98be
commit 6eab054ab2
2 changed files with 4 additions and 4 deletions

View File

@ -7,13 +7,13 @@ use App\Events\Install\UpdateFinished as Event;
use App\Traits\Permissions;
use Illuminate\Support\Facades\Log;
class Version308 extends Listener
class Version309 extends Listener
{
use Permissions;
const ALIAS = 'core';
const VERSION = '3.0.8';
const VERSION = '3.0.9';
/**
* Handle the event.
@ -27,7 +27,7 @@ class Version308 extends Listener
return;
}
Log::channel('stdout')->info('Updating to 3.0.8 version...');
Log::channel('stdout')->info('Updating to 3.0.9 version...');
$this->updatePermissions();

View File

@ -20,7 +20,7 @@ class Event extends Provider
'App\Listeners\Update\V30\Version304',
'App\Listeners\Update\V30\Version305',
'App\Listeners\Update\V30\Version307',
'App\Listeners\Update\V30\Version308',
'App\Listeners\Update\V30\Version309',
],
'Illuminate\Auth\Events\Login' => [
'App\Listeners\Auth\Login',