src/Twig/Components/Testimonial.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Twig\Components;
  3. use Symfony\UX\TwigComponent\Attribute\AsTwigComponent;
  4. #[AsTwigComponent('Testimonial')]
  5. class Testimonial
  6. {
  7. public bool $featured = false;
  8. public bool $reverse = false;
  9. public ?string $author = null;
  10. public ?string $company = null;
  11. }