Files
MKM/app/Commands/Transactions/CreateTransactionCommand.php
2024-08-15 20:11:21 +08:00

14 lines
231 B
PHP

<?php
namespace App\Commands\Transactions;
use App\Commands\Command;
class CreateTransactionCommand implements Command
{
public function execute(array $data): mixed
{
// TODO: Implement execute() method.
}
}