Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- <?php
-
- declare(strict_types=1);
-
- namespace App\Models;
-
- class Campaign
- {
- public ?int $id = null;
- public int $campaignTypeId = 0;
-
- /**
- * Key → value pairs matching the parent campaign type's attribute names.
- * @var array<string, string>
- */
- public array $attributeValues = [];
-
- public ?string $createdAt = null;
- public ?string $updatedAt = null;
- }
|