for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\User\Events;
class UserHasBegunResetProcess
{
public $user;
public $code;
public function __construct($user, $code)
$this->user = $user;
$this->code = $code;
}