12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
|
|
|
|
#[AsTwigComponent(template: 'components/rating_stars.html.twig')]
|
|
class RatingStars
|
|
{
|
|
public ?int $averageRating;
|
|
}
|