bnomei/kirby-blueprints

View on GitHub
classes/Blueprints/Attributes/EmptyValue.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bnomei\Blueprints\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_PROPERTY)]
class EmptyValue extends GenericAttribute
{
    /**
     * The placeholder text if none have been selected yet
     *
     * @param  string|array<string,string>  $empty
     */
    public function __construct(
        public string|array $empty
    ) {}
}