Movies\Rating::__construct PHP Method

__construct() public method

Rating constructor.
public __construct ( User $user, Movie $movie, float $score )
$user User
$movie Movie
$score float
    public function __construct(User $user, Movie $movie, $score)
    {
        $this->user = $user;
        $this->movie = $movie;
        $this->score = $score;
    }