Files

9 lines
121 B
PHP
Raw Permalink Normal View History

2026-03-15 17:08:23 +07:00
<?php
namespace App\Interfaces;
interface DBPrepareInterface
{
public function prepareForDB(array $data): array;
}