Skip to content

Commit

Permalink
Fixed listener version number..
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Nov 3, 2022
1 parent 8dfacd9 commit 6eab054
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -7,13 +7,13 @@
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.
Expand All @@ -27,7 +27,7 @@ public function handle(Event $event)
return;
}

Log::channel('stdout')->info('Updating to 3.0.8 version...');
Log::channel('stdout')->info('Updating to 3.0.9 version...');

$this->updatePermissions();

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/Event.php
Expand Up @@ -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',
Expand Down

0 comments on commit 6eab054

Please sign in to comment.