<?php

declare(strict_types = 1);

use Illuminate\Database\Eloquent\Model;

/**
 * @property string $email
 */
class User extends Model
{
    public function getEmail(): string
    {
        return $this->email;
    }

    public function setEmail(string $email): void
    {
        $this->email = $email;
    }
}

Add a code snippet to your website: www.paste.org