big commit

This commit is contained in:
omair saleh
2021-03-22 08:46:33 +08:00
parent 307aff1c3f
commit 9fe0757baf
75 changed files with 2587 additions and 425 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Companies;
use App\Classes\Modules\Companies\ControllersLogic\UpdateCompanyIdentificationDocumentLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class UpdateCompanyIdentificationDocumentController
{
/**
* @param Request $request
* @param UpdateCompanyIdentificationDocumentLogic $logic
* @return JsonResponse
*/
public function update(Request $request, UpdateCompanyIdentificationDocumentLogic $logic): JsonResponse {
return $logic->execute($request);
}
}