12 lines
141 B
PHP
12 lines
141 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Icefox\Data\Attributes;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_PARAMETER)]
|
|
class Flat
|
|
{
|
|
}
|