Files
Epicnabbo-Catalogus-Updated…/cms update/app/Services/Emulator/EmulatorInterface.php
T
Remco b67e0ec2b9 🆙 Add fixed cms 🆙
2026-02-02 19:30:21 +01:00

16 lines
309 B
PHP

<?php
namespace App\Services\Emulator;
use App\Models\User;
interface EmulatorInterface
{
public function getCurrencyBalance(User $user, string $type): int;
/**
* Get the list of columns that represent permissions in the database.
*/
public function getPermissionColumns(): array;
}