11 lines
174 B
PHP
11 lines
174 B
PHP
<?php
|
|
|
|
namespace Ulmus\Attribute\Obj;
|
|
|
|
#[\Attribute(\Attribute::TARGET_CLASS)]
|
|
class Collation {
|
|
public function __construct(
|
|
public string $name = ""
|
|
) {}
|
|
}
|