From 3416f8a575adba3a57624a358c0bc09f61c4d971 Mon Sep 17 00:00:00 2001 From: RameshT Date: Tue, 13 Aug 2024 15:16:26 +0530 Subject: [PATCH] Your commit message --- application/controllers/dummy.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/application/controllers/dummy.php b/application/controllers/dummy.php index 1f64866..e9c5ccb 100644 --- a/application/controllers/dummy.php +++ b/application/controllers/dummy.php @@ -6,25 +6,10 @@ namespace MyProject\Controllers; use MyProject\Models\ExampleModel; -/** - * Class ExampleController - * - * Handles the requests related to examples. - */ class ExampleController { private ExampleModel $model; - /** - * Display a specific item view. - * - * Retrieves an item by its ID and renders the item view. If the item is not found, - * a not found response is generated. - * - * @param integer $id The ID of the item to retrieve. - * - * @return void - */ public function show(int $id): void { $item = $this->model->find($id);