Initial commit

This commit is contained in:
omair saleh
2020-05-11 14:43:49 +08:00
commit 4b1930b9ee
776 changed files with 266655 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Comments;
use App\Classes\Modules\Comments\ControllersLogic\UpdateCommentControllerLogic;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
class UpdateCommentController
{
/**
* @param Request $request
* @param UpdateCommentControllerLogic $logic
* @return JsonResponse
*/
public function update(Request $request, UpdateCommentControllerLogic $logic): JsonResponse {
return $logic->execute($request);
}
}