Starting actors populate
This commit is contained in:
13
src/Model/TMDB/TMDBActor.php
Normal file
13
src/Model/TMDB/TMDBActor.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\TMDB;
|
||||
|
||||
class TMDBActor
|
||||
{
|
||||
public function __construct(
|
||||
public int $id { get => $this->id; },
|
||||
public string $name { get => $this->name; },
|
||||
public float $popularity { get => $this->popularity; },
|
||||
public string $character { get => $this->character; },
|
||||
) {}
|
||||
}
|
||||
Reference in New Issue
Block a user