10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
|
|
namespace App\Interfaces;
|
|
|
|
interface ScriptContract extends BaseContract
|
|
{
|
|
public function run(): string;
|
|
public static function configSchema(): array;
|
|
}
|