You've already forked Epicnabbo-Catalogus-Updated-Daily
16 lines
309 B
PHP
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;
|
|
}
|