summaryrefslogtreecommitdiff
path: root/src/application/mystic/forum/attributes/Table.php
blob: 60fe1aea442ec44106f2b69473f5acd5b9e3fa7d (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace mystic\forum\attributes;

#[\Attribute(\Attribute::TARGET_CLASS)]
class Table {
    public function __construct(
        public readonly string $tableName,
    ) {}
}