1
0
Fork 0
mirror of https://github.com/archtechx/laravel-tips.git synced 2025-12-12 05:14:04 +00:00

php 7.4 refactor

This commit is contained in:
Samuel Štancl 2021-04-06 22:19:23 +02:00
parent 21c2fd4e94
commit bb40b60d3e
4 changed files with 40 additions and 15 deletions

View file

@ -4,10 +4,20 @@ namespace App\Twitter;
class TwitterUser
{
public string $id;
public string $name;
public string $username;
public string $profile_image_url;
public function __construct(
public string $id,
public string $name,
public string $username,
public string $profile_image_url,
) {}
string $id,
string $name,
string $username,
string $profile_image_url,
) {
$this->id = $id;
$this->name = $name;
$this->username = $username;
$this->profile_image_url = $profile_image_url;
}
}