When.php
11 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\DependencyInjection\Attribute; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::TARGET_FUNCTION | \Attribute::IS_REPEATABLE)] |
| 5 | class When |
| 6 | { |
| 7 | public function __construct(public string $env) |
| 8 | { |
| 9 | } |
| 10 | } |
| 11 |