관리-도구
편집 파일: VendorWalletRepositoryInterface.php
<?php namespace App\Contracts\Repositories; interface VendorWalletRepositoryInterface extends RepositoryInterface { /** * @param array $params * @param array $data * @return bool */ public function updateWhere(array $params, array $data): bool; }