16 lines
250 B
PHP
16 lines
250 B
PHP
<?php
|
|
|
|
namespace Ulmus\Annotation\Property;
|
|
|
|
class GroupBy implements \Notes\Annotation {
|
|
|
|
public array $fields = [];
|
|
|
|
public function __construct(...$field)
|
|
{
|
|
if ( $field ) {
|
|
$this->fields = $field;
|
|
}
|
|
}
|
|
}
|