bnomei/kirby-blueprints

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bnomei\Blueprints\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_PROPERTY)]
class Separator extends GenericAttribute
{
    /**
     * Custom tags separator, which will be used to store tags in the content file
     */
    public function __construct(
        public string $separator = ','
    ) {}
}