| 123456789101112131415161718192021 |
- <?php
- declare(strict_types=1);
- namespace SixShop\Core\Attribute;
- use Attribute;
- #[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD | Attribute::IS_REPEATABLE)]
- class Hook
- {
- /**
- * @param string|array $hook hook name
- * @param bool $isConsole is console
- */
- public function __construct(
- public string|array $hook,
- public bool $isConsole = false,
- )
- {
- }
- }
|