pos-gis/app/Interfaces/AuthApps.php

16 lines
249 B
PHP
Raw Normal View History

2024-10-07 06:13:42 +00:00
<?php
namespace App\Interfaces;
interface AuthApps
{
public function check();
public function add($token);
public function token();
public function clear();
public function addMsg($message);
public function clearMsg();
}