<?php
namespace App\Twig\Components;
use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
#[AsTwigComponent('Testimonial')]
class Testimonial
{
public bool $featured = false;
public bool $reverse = false;
public ?string $author = null;
public ?string $company = null;
}