vendor/shopware/core/Framework/Routing/Annotation/Since.php line 12

  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Framework\Routing\Annotation;
  3. use Doctrine\Common\Annotations\Annotation\NamedArgumentConstructor;
  4. use Shopware\Core\Framework\Log\Package;
  5. /**
  6.  * @Annotation
  7.  *
  8.  * @NamedArgumentConstructor
  9.  */
  10. #[Package('core')]
  11. class Since
  12. {
  13.     public function __construct(public string $version)
  14.     {
  15.     }
  16. }