bnomei/kirby-blueprints

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bnomei\Blueprints\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_PROPERTY)]
class MaxTime extends GenericAttribute
{
    /**
     * Latest time, which can be selected/saved (H:i or H:i:s)
     */
    public function __construct(
        public string $max //  (H:i or H:i:s)
    ) {}
}