App\Events\Forum\TopicUpdate::__construct PHP Method

__construct() public method

public __construct ( Topic $topic, Post $post, User $user = null )
$topic App\Models\Forum\Topic
$post App\Models\Forum\Post
$user app\models\User
    public function __construct(Topic $topic, Post $post, User $user = null)
    {
        $this->topic = $topic;
        $this->post = $post;
        $this->user = $user;
    }
TopicUpdate