14 lines
231 B
PHP
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.
|
|
}
|
|
}
|