mirror of
https://github.com/archtechx/laravel-tips.git
synced 2025-12-11 21:14:02 +00:00
13 lines
226 B
PHP
13 lines
226 B
PHP
<?php
|
|
|
|
namespace App\Twitter;
|
|
|
|
class TwitterUser
|
|
{
|
|
public function __construct(
|
|
public string $id,
|
|
public string $name,
|
|
public string $username,
|
|
public string $profile_image_url,
|
|
) {}
|
|
}
|