bnomei/kirby-blueprints

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bnomei\Blueprints\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_PROPERTY)]
class Numbered extends GenericAttribute
{
    /**
     * If false, the prepended number will be hidden
     */
    public function __construct(
        public bool $numbered = false
    ) {}
}