| 1 | <?php |
||
| 10 | class User extends Model implements TransformableContract |
||
| 11 | { |
||
| 12 | protected $guarded = []; |
||
| 13 | |||
| 14 | public function getId(): int |
||
| 18 | |||
| 19 | public function getName(): string |
||
| 23 | |||
| 24 | public function getMail(): string |
||
| 28 | |||
| 29 | public function getHomeAddress(): string |
||
| 33 | |||
| 34 | public function getCalculatedField(): int |
||
| 38 | } |
||
| 39 |