Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Models/Attributes/Identifiable.php
14043 views
1
<?php
2
3
namespace Pterodactyl\Models\Attributes;
4
5
#[\Attribute(\Attribute::TARGET_CLASS)]
6
readonly class Identifiable
7
{
8
public function __construct(public string $prefix, public string $column = 'uuid')
9
{
10
}
11
}
12
13