Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Contracts/Models/Identifiable.php
14043 views
1
<?php
2
3
namespace Pterodactyl\Contracts\Models;
4
5
use Illuminate\Database\Eloquent\Builder;
6
7
interface Identifiable
8
{
9
public function scopeWhereIdentifier(Builder $builder, string $identifier): void;
10
}
11
12