14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Twig\Components;
|
|
|
|
use App\Entity\Teamer;
|
|
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
|
|
|
|
#[AsTwigComponent(template: 'components/rating_stars.html.twig')]
|
|
class RatingStars
|
|
{
|
|
public ?int $rating;
|
|
public ?Teamer $teamer = null;
|
|
}
|