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

View File

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