I'm using laravel sail to run laravel octane on swoole.
I made a change to my EventServiceProvider:
<?php
namespace App\Providers;
use App\Events\SubscriptionCreated;
use App\Listeners\CreateUserTeam;
use App\Listeners\SendSubscriptionReceipt;
use App\Listeners\UpdateTeamFeatures;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
CreateUserTeam::class
],
SubscriptionCreated::class => [
SendSubscriptionReceipt::class,
UpdateTeamFeatures::class
]
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
\Log::debug("HERE", $this->listen);
}
}
Here is my listener:
<?php
namespace App\Listeners;
use App\Models\Team;
use Illuminate\Auth\Events\Registered;
class CreateUserTeam
{
/**
* Create the event listener.
*
* @return void
*/
public function __construct()
{
\Log::debug("HIT");
}
/**
* Handle the event.
*
* @param Registered $event
* @return void
*/
public function handle(Registered $event)
{
$user = $event->user;
$team = Team::create([
'manager_id' => $user->id,
]);
$team->createAsStripeCustomer();
$user->update(['team_id' => $team->id]);
}
}
No matter what I try this event listener is not being fired. I've tried clearing the cache, composer dump-autoload, php artisan optimize, reloading octane, stopping octane and starting it again. Even stopping the docker containers and starting them again. Nothing works.
It logs the list of listeners (including the CreateUserTeam listener) and it will fire the Email notification but not the other listener.
If anyone has any insight... please. I am at wits-end
I created same situation with you,
Added my listener like you did:
Used Laravel's registration test for it:
Here is my test listener
And run my test inside the sail:
As you can see it runs handle function inside TestListener.php
Can you remove you other code parts inside handle function and try like this? I think you may have some error in your code