From 6c1af6dc71042a1b629f04812a7215678bede644 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Mon, 7 Sep 2020 13:35:28 +0300 Subject: [PATCH] Removed data structure comment from models. --- application/models/Admins_model.php | 14 ------------- application/models/Providers_model.php | 25 ------------------------ application/models/Secretaries_model.php | 16 --------------- 3 files changed, 55 deletions(-) diff --git a/application/models/Admins_model.php b/application/models/Admins_model.php index 47efc9bc..f088cdbd 100644 --- a/application/models/Admins_model.php +++ b/application/models/Admins_model.php @@ -16,20 +16,6 @@ * * Handles the database actions for admin users management. * - * Data Structure: - * 'fist_name' - * 'last_name' (required) - * 'email' (required) - * 'mobile_number' - * 'phone_number' (required) - * 'address' - * 'city' - * 'state' - * 'zip_code' - * 'notes' - * 'id_roles' - * 'settings' >>> array that contains user settings (username, password etc) - * * @property CI_DB_query_builder db * @property CI_Loader load * diff --git a/application/models/Providers_model.php b/application/models/Providers_model.php index 367c34e4..394da1a8 100755 --- a/application/models/Providers_model.php +++ b/application/models/Providers_model.php @@ -16,31 +16,6 @@ * * Contains the database operations for the service provider users of Easy!Appointments. * - * Data Structure: - * 'fist_name' - * 'last_name' (required) - * 'email' (required) - * 'mobile_number' - * 'phone_number' (required) - * 'address' - * 'city' - * 'state' - * 'zip_code' - * 'notes' - * 'id_roles' - * 'services' >> array that contains the ids that the provider can provide - * 'settings' - * 'username' - * 'password' - * 'notifications' - * 'working_plan' - * 'google_sync' - * 'google_token' - * 'google_calendar' - * 'sync_past_days' - * 'sync_future_days', - * 'calendar_view' - * * @property CI_DB_query_builder db * @property CI_Loader load * diff --git a/application/models/Secretaries_model.php b/application/models/Secretaries_model.php index a667e3a7..05b0b08f 100644 --- a/application/models/Secretaries_model.php +++ b/application/models/Secretaries_model.php @@ -16,22 +16,6 @@ * * Handles the db actions that have to do with secretaries. * - * Data Structure: - * - * 'first_name' - * 'last_name' - * 'email' - * 'mobile_number' - * 'phone_number' - * 'address' - * 'city' - * 'state' - * 'zip_code' - * 'notes' - * 'id_roles' - * 'providers' >> array with provider ids that the secretary handles - * 'settings' >> array with the secretary settings - * * @property CI_DB_query_builder db * @property CI_Loader load *