8 lines
119 B
PHP
Executable File
8 lines
119 B
PHP
Executable File
<?php
|
|
|
|
namespace app\core;
|
|
|
|
interface AuthInterface
|
|
{
|
|
public function executeReq(array $body): int|string;
|
|
} |