for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Minepic\Events\Account;
use Minepic\Events\Event;
use Minepic\Models\Account;
class AccountCreatedEvent extends Event
{
public function __construct(private Account $account)
}
public function getAccount(): Account
return $this->account;