From 8d34a9cb7c250ec3a44ad6a9a79f217918c9ca26 Mon Sep 17 00:00:00 2001 From: gh0sTedBuddy Date: Mon, 1 Apr 2024 22:46:20 +0100 Subject: [PATCH] chore(docs) BaseController --- src/Routing/BaseController.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Routing/BaseController.js b/src/Routing/BaseController.js index 3a38666..f918559 100644 --- a/src/Routing/BaseController.js +++ b/src/Routing/BaseController.js @@ -1,3 +1,11 @@ +/** + * BaseController class representing the base controller. + * This class can be extended by other controller classes to inherit common functionality. + */ export default class BaseController { + /** + * Creates an instance of BaseController. + * @constructor + */ constructor() {} }