Hook.php 254 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace SixShop\core\Attribute;
  4. #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
  5. class Hook
  6. {
  7. public function __construct(
  8. public string|array $hook,
  9. ) {}
  10. }