12 lines
146 B
PHP
12 lines
146 B
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
interface Command
|
|
{
|
|
public function execute(array $data) : mixed;
|
|
}
|