diff --git a/.claude/prompt/secretary-welcome-sms.md b/.claude/prompt/secretary-welcome-sms.md new file mode 100644 index 00000000..07e65445 --- /dev/null +++ b/.claude/prompt/secretary-welcome-sms.md @@ -0,0 +1,140 @@ +# ارسال پیامک خوش‌آمد هنگام تعریف منشی جدید + +## پروژه + +`clinicpro` (backend — Symfony) + +## زمینه + +هنگام تعریف منشی جدید از طریق `POST /api/v1/secretary`، یک User با نقش `ROLE_SECRETARY` ساخته (یا کاربر موجود بازاستفاده) می‌شود، اما **هیچ پیامکی به منشی ارسال نمی‌شود**. منشی هیچ اطلاعی از شماره‌کاربری، رمز و لینک ورود ندارد. + +الگوی مشابه در پروژه از قبل وجود دارد: هنگام تأیید پیش‌ثبت‌نام (`PreRegistrationController` با تگ `TAG_PRE_REGISTRATION`) و دعوت پزشک به کلینیک (`ClinicInvitationService::sendSms` با تگ `TAG_CLINIC_INVITATION`). این تسک همان الگو را برای منشی پیاده می‌کند. + +## هدف + +بعد از ساخت موفق منشی جدید، یک پیامک خوش‌آمد به شماره منشی ارسال شود. **متن پیامک باید از سیستم template پیامک بیاید** (تگ اختصاصی + `SmsMessageTemplate::DEFAULTS` به‌عنوان fallback، قابل ویرایش از DB)، نه hard-code داخل کنترلر. + +## فایل‌های مرتبط + +| فایل | نقش | +|------|-----| +| `src/Secretary/Controller/SecretaryController.php` | endpoint ساخت منشی — محل تزریق ارسال پیامک | +| `src/Sms/Entity/SmsLog.php` | ثابت‌های تگ (`TAG_*`) — افزودن تگ جدید | +| `src/Sms/Entity/SmsMessageTemplate.php` | آرایه `DEFAULTS` — افزودن متن پیش‌فرض template | +| `src/Sms/Service/SmsService.php` | `dispatchAsync(...)` — ارسال async پیامک | +| `src/Sms/Service/SmsTextResolver.php` | `resolve(tag, vars)` — resolve متن template و جایگزینی `{key}` | +| `src/ClinicInvitation/Service/ClinicInvitationService.php` | **الگوی مرجع** ارسال پیامک با template | +| `docs/api/secretary.md` + `docs/api/sms.md` | مستندات — باید به‌روز شوند | + +## وضعیت فعلی + +در `SecretaryController::create()` بعد از ساخت user، فقط ذخیره می‌شود و هیچ پیامکی نمی‌رود: + +```php +// Assign ROLE_SECRETARY +$roles = $secretaryUser->getRoles(); +if (!in_array('ROLE_SECRETARY', $roles, true)) { + $roles[] = 'ROLE_SECRETARY'; + $secretaryUser->setRoles(array_values(array_unique($roles))); +} +$this->userRepo->save($secretaryUser); + +// ... check duplicate ... + +$secretary = new DoctorSecretary($doctor, $secretaryUser, $ownerType, $ownerClinic); +// ... +$this->secretaryRepo->save($secretary); + +return $this->success(['data' => $secretary->toArray()], 201); +``` + +الگوی مرجع ارسال پیامک با template (از `ClinicInvitationService`): + +```php +$message = $this->smsText->resolve(\App\Sms\Entity\SmsLog::TAG_CLINIC_INVITATION, [ + 'clinic' => $clinicName, + 'link' => $link, +]); +$this->smsService->dispatchAsync($inv->getMobile(), $message, tag: \App\Sms\Entity\SmsLog::TAG_CLINIC_INVITATION); +``` + +ساختار `DEFAULTS` در `SmsMessageTemplate` (هر تگ: `title`, `body` با placeholderهای `{key}`, `variables[]`): + +```php +SmsLog::TAG_PRE_REGISTRATION => [ + 'title' => 'پیش‌ثبت‌نام', + 'body' => 'به کلینیک پرو خوش آمدید! شماره‌کاربری: {username} | رمز عبور: {password} | لینک ورود: {link}', + 'variables' => ['username', 'password', 'link'], +], +``` + +## وظایف + +### ۱. افزودن تگ جدید در `SmsLog` + +در `src/Sms/Entity/SmsLog.php` یک ثابت تگ جدید اضافه کن (هم‌سبک بقیه تگ‌ها): + +```php +public const TAG_SECRETARY = 'secretary'; +``` + +> نکته: investigator گزارش داد تگی به نام `TAG_WELCOME` هم موجود است — قبل از افزودن، فایل را بخوان؛ اگر تگ عمومی خوش‌آمد مناسب بود از همان استفاده کن، در غیر این صورت `TAG_SECRETARY` را اضافه کن. یک تگ اختصاصی «منشی» بهتر است چون متن template مستقل و قابل ویرایش می‌شود. + +### ۲. افزودن template پیش‌فرض در `SmsMessageTemplate::DEFAULTS` + +یک entry جدید برای تگ منشی اضافه کن. متن باید شامل نام کلینیک/دکتر و اطلاعات ورود باشد: + +```php +SmsLog::TAG_SECRETARY => [ + 'title' => 'دعوت به‌عنوان منشی', + 'body' => "شما به‌عنوان منشی {owner} در کلینیک‌پرو تعریف شدید.\nشماره‌کاربری: {username}\nلینک ورود: {link}", + 'variables' => ['owner', 'username', 'link'], +], +``` + +- `{owner}` = نام دکتر یا نام کلینیک (بسته به `$ownerType`). +- `{username}` = شماره موبایل منشی (`$mobile`). +- `{link}` = لینک ورود پنل (از سرویس `$appUrl` مثل بقیه، rtrim + مسیر ورود). +- اگر رمز عبور در body لازم شد، فقط زمانی که کاربر **جدید** ساخته شده و `password` در ورودی آمده — رمز خام را نگه‌دار و در vars بگذار (متغیر محلی، نه از دیتابیس؛ hash قابل بازگشت نیست). + +### ۳. تزریق سرویس‌های SMS در کنترلر + +در constructor `SecretaryController` این‌ها را اضافه کن (هم‌سبک `ClinicInvitationService`): + +```php +private readonly \App\Sms\Service\SmsService $smsService, +private readonly \App\Sms\Service\SmsTextResolver $smsText, +private readonly string $appUrl, // همان param که ClinicInvitationService می‌گیرد +``` + +> `$appUrl` را از همان جایی bind کن که `ClinicInvitationService` می‌گیرد — `config/services.yaml` را بررسی کن و همان `$appUrl` را برای `SecretaryController` هم bind کن (یا اگر global bind است، خودکار تزریق می‌شود). + +### ۴. ارسال پیامک بعد از ساخت موفق منشی + +در `create()`، **بعد از** `$this->secretaryRepo->save($secretary);` و **قبل از** `return`، پیامک را resolve و dispatch کن: + +```php +$ownerName = $ownerClinic !== null + ? ($ownerClinic->getName() ?? 'کلینیک') + : ($doctor->getUser()->getRealName() ?? 'پزشک'); + +$link = rtrim($this->appUrl, '/') . '/login'; + +$message = $this->smsText->resolve(\App\Sms\Entity\SmsLog::TAG_SECRETARY, [ + 'owner' => $ownerName, + 'username' => $mobile, + 'link' => $link, +]); + +$this->smsService->dispatchAsync($mobile, $message, tag: \App\Sms\Entity\SmsLog::TAG_SECRETARY); +``` + +## نکات مهم + +- **ارسال async است** — `dispatchAsync` فقط در صف Messenger می‌گذارد؛ ارسال واقعی توسط worker (`messenger:consume async`) انجام می‌شود. برای تست local باید worker در حال اجرا باشد. +- **متن hard-code نکن** — همیشه از `SmsTextResolver::resolve(tag, vars)` استفاده کن تا ادمین بتواند از DB متن را ویرایش کند. `DEFAULTS` فقط fallback است. +- **placeholderها دقیقاً `{key}`** باشند و کلیدهای `variables[]` با کلیدهای آرایه `vars` که به `resolve` می‌دهی یکی باشند. +- **duplicate/خطا** — اگر منشی تکراری بود (خط ۱۰۱–۱۰۳) یا هر خطای زودهنگام، `return` قبل از رسیدن به کد ارسال رخ می‌دهد؛ پس پیامک فقط روی مسیر موفق ساخت می‌رود. درست است — همین رفتار مطلوب است. +- **کاربر موجود بازاستفاده‌شده**: تصمیم بگیر آیا برای کاربری که از قبل وجود داشت (`findByMobile` غیر null) هم پیامک برود یا فقط برای کاربر تازه‌ساخته. پیشنهاد: چون این یک «دعوت به نقش منشی» است، برای هر دو حالت (چون رابطه منشی جدید ساخته می‌شود) پیامک منطقی است؛ ولی اگر رمز در body هست، رمز را فقط برای کاربر جدید بگذار. +- **مستندات (Standing Rule)**: چون `src/Secretary/*` و `src/Sms/*` تغییر می‌کنند، در همین session هم `docs/api/secretary.md` (ذکر ارسال پیامک هنگام create) و هم `docs/api/sms.md` (تگ جدید + template پیش‌فرض) را به‌روز کن. +- بعد از تغییر کد: `ddev exec php bin/console cache:clear`. اگر Entity تغییری در schema نداشت (فقط ثابت/آرایه `DEFAULTS`)، migration لازم نیست — ولی اگر template را seed می‌کنی، از همان مسیر seed موجود پروژه استفاده کن. diff --git a/config/services.yaml b/config/services.yaml index 584329e9..ba4f3831 100644 --- a/config/services.yaml +++ b/config/services.yaml @@ -104,6 +104,10 @@ services: arguments: $appUrl: '%env(APP_BASE_URL)%' + App\Secretary\Controller\SecretaryController: + arguments: + $appUrl: '%env(APP_BASE_URL)%' + App\Sms\Controller\SmsWalletController: arguments: $appBaseUrl: '%env(APP_BASE_URL)%' diff --git a/docs/api/secretary.md b/docs/api/secretary.md index 67fe0048..a23ffdf6 100644 --- a/docs/api/secretary.md +++ b/docs/api/secretary.md @@ -124,6 +124,8 @@ Create a secretary for a doctor. | `doctor` | منشی توسط خود دکتر تعریف شده — فقط مطب شخصی | | `clinic` | منشی توسط مدیر کلینیک تعریف شده — فقط کلینیک | +**پیامک خوش‌آمد:** پس از ساخت موفق منشی، یک پیامک به‌صورت async به `mobile_number` منشی ارسال می‌شود (تگ `secretary`). متن از قالب ویرایش‌پذیر DB می‌آید (fallback به پیش‌فرض) و placeholderهای `{owner}` (نام دکتر یا کلینیک بسته به `owner_type`)، `{username}` (موبایل منشی) و `{link}` (لینک ورود) را جایگزین می‌کند. ویرایش متن از `PATCH /api/v1/admin/sms/messages/secretary` — رجوع به [sms.md](sms.md). + ### Errors | Code | HTTP | Description | diff --git a/docs/api/sms.md b/docs/api/sms.md index c10025fa..f422f2bf 100644 --- a/docs/api/sms.md +++ b/docs/api/sms.md @@ -482,9 +482,11 @@ Updated template with `status: "rejected"`. متن پیامک‌های سیستمی (OTP، پرداخت، دعوت کلینیک، پیش‌ثبت‌نام، تأیید موبایل) از پنل قابل ویرایش است و بر اساس **تگ** کلیددار می‌شود. هر متن placeholderهای مجاز خود را دارد (مثل `{code}`، `{doctor}`، `{date}`). هنگام ارسال، `SmsTextResolver` متنِ ویرایش‌شده‌ی DB را می‌گیرد و placeholderها را جایگزین می‌کند؛ اگر رکوردی نبود به متن پیش‌فرض fallback می‌شود. -> تگ‌ها: `otp`، `payment`، `clinic_invitation`، `pre_registration`، `notification_mobile`، `welcome`. (پیامک قالبیِ کاربر با تگ `user_template` جداگانه از طریق `POST /api/v1/sms/template` مدیریت می‌شود.) +> تگ‌ها: `otp`، `payment`، `clinic_invitation`، `pre_registration`، `notification_mobile`، `welcome`، `secretary`. (پیامک قالبیِ کاربر با تگ `user_template` جداگانه از طریق `POST /api/v1/sms/template` مدیریت می‌شود.) > > تگ `welcome`: پیامک خوش‌آمد که هنگام افزودن پزشک/کلینیک توسط نماینده (`POST /api/v1/representation/doctor|clinic`) به‌صورت async به موبایل پزشک/مالک ارسال می‌شود. متن فعلاً ثابت است (نام + `site_name`)، نه از قالب DB. +> +> تگ `secretary`: پیامک خوش‌آمد که هنگام تعریف منشی جدید (`POST /api/v1/secretary`) به‌صورت async به موبایل منشی ارسال می‌شود. placeholderها: `{owner}` (نام دکتر یا کلینیک)، `{username}` (موبایل منشی)، `{link}` (لینک ورود). متن از قالب DB می‌آید (fallback به پیش‌فرض `SmsMessageTemplate::DEFAULTS`). ### GET `/api/v1/admin/sms/messages` diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json index 42f04848..5f357e35 100644 --- a/graphify-out/.graphify_labels.json +++ b/graphify-out/.graphify_labels.json @@ -654,10 +654,28 @@ "652": "Community 652", "653": "Community 653", "654": "Community 654", + "655": "Community 655", + "656": "Community 656", + "657": "Community 657", + "658": "Community 658", + "659": "Community 659", + "660": "Community 660", + "661": "Community 661", "662": "Community 662", "663": "Community 663", + "664": "Community 664", + "665": "Community 665", + "666": "Community 666", + "667": "Community 667", "668": "Community 668", "669": "Community 669", "670": "Community 670", - "672": "Community 672" + "671": "Community 671", + "672": "Community 672", + "673": "Community 673", + "674": "Community 674", + "675": "Community 675", + "676": "Community 676", + "677": "Community 677", + "678": "Community 678" } diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md index 232c7b3f..d57e8654 100644 --- a/graphify-out/GRAPH_REPORT.md +++ b/graphify-out/GRAPH_REPORT.md @@ -1,16 +1,16 @@ -# Graph Report - clinicpro (2026-06-30) +# Graph Report - clinicpro (2026-07-01) ## Corpus Check -- 663 files · ~463,560 words +- 668 files · ~472,125 words - Verdict: corpus is large enough that graph structure adds value. ## Summary -- 8328 nodes · 11514 edges · 661 communities (532 shown, 129 thin omitted) +- 8432 nodes · 11619 edges · 679 communities (551 shown, 128 thin omitted) - Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 264 edges (avg confidence: 0.8) - Token cost: 0 input · 0 output ## Graph Freshness -- Built from commit: `22937dfa` +- Built from commit: `31201322` - Run `git rev-parse HEAD` and compare to check if the graph is stale. - Run `graphify update .` after code changes (no API cost). @@ -656,11 +656,29 @@ - [[_COMMUNITY_Community 652|Community 652]] - [[_COMMUNITY_Community 653|Community 653]] - [[_COMMUNITY_Community 654|Community 654]] +- [[_COMMUNITY_Community 655|Community 655]] +- [[_COMMUNITY_Community 656|Community 656]] +- [[_COMMUNITY_Community 657|Community 657]] +- [[_COMMUNITY_Community 658|Community 658]] +- [[_COMMUNITY_Community 659|Community 659]] +- [[_COMMUNITY_Community 660|Community 660]] +- [[_COMMUNITY_Community 661|Community 661]] - [[_COMMUNITY_Community 662|Community 662]] - [[_COMMUNITY_Community 663|Community 663]] +- [[_COMMUNITY_Community 664|Community 664]] +- [[_COMMUNITY_Community 665|Community 665]] +- [[_COMMUNITY_Community 666|Community 666]] +- [[_COMMUNITY_Community 667|Community 667]] - [[_COMMUNITY_Community 668|Community 668]] - [[_COMMUNITY_Community 669|Community 669]] +- [[_COMMUNITY_Community 671|Community 671]] - [[_COMMUNITY_Community 672|Community 672]] +- [[_COMMUNITY_Community 673|Community 673]] +- [[_COMMUNITY_Community 674|Community 674]] +- [[_COMMUNITY_Community 675|Community 675]] +- [[_COMMUNITY_Community 676|Community 676]] +- [[_COMMUNITY_Community 677|Community 677]] +- [[_COMMUNITY_Community 678|Community 678]] ## God Nodes (most connected - your core abstractions) 1. `BaseController` - 76 edges @@ -679,37 +697,37 @@ assets/admin/components/ServiceTariffModal.tsx → assets/admin/lib/utils.ts - `PersianDatePicker()` --calls--> `formatDate()` [EXTRACTED] assets/admin/components/ui/PersianDatePicker.tsx → assets/admin/lib/utils.ts -- `MyFinancialPage()` --calls--> `formatRial()` [EXTRACTED] - assets/admin/pages/MyFinancialPage.tsx → assets/admin/lib/utils.ts -- `RepresentationSettlementPage()` --calls--> `formatRial()` [EXTRACTED] - assets/admin/pages/RepresentationSettlementPage.tsx → assets/admin/lib/utils.ts +- `LogsPage()` --calls--> `formatDateTime()` [EXTRACTED] + assets/admin/pages/LogsPage.tsx → assets/admin/lib/utils.ts - `SmsPage()` --calls--> `formatDateTime()` [EXTRACTED] assets/admin/pages/SmsPage.tsx → assets/admin/lib/utils.ts +- `NewAppointmentModal()` --calls--> `useAuthStore` [EXTRACTED] + assets/admin/pages/AppointmentsPage.tsx → assets/admin/stores/authStore.ts ## Import Cycles - None detected. -## Communities (661 total, 129 thin omitted) +## Communities (679 total, 128 thin omitted) ### Community 0 - "Community 0" Cohesion: 0.05 -Nodes (43): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, AddForm, addSchema (+35 more) +Nodes (40): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, LogoUploadField(), TabActions() (+32 more) ### Community 1 - "Community 1" Cohesion: 0.03 Nodes (41): AddressData, AddrForm, addrSchema, AVATAR_COLORS, BookingMeta, CityOpt, DateOverrideData, DEFAULT_BOOKING_META (+33 more) ### Community 2 - "Community 2" -Cohesion: 0.07 -Nodes (27): get, BeforeInstallPromptEvent, usePwaInstall(), api, ApiError, getToken(), refreshOnce(), request() (+19 more) +Cohesion: 0.06 +Nodes (26): get, api, ApiError, getToken(), refreshOnce(), request(), { refreshMock, logoutMock }, replaceMock (+18 more) ### Community 3 - "Community 3" -Cohesion: 0.04 -Nodes (71): PaginatedResponse, formatDate(), ALL_STATUSES, AppointmentDetailPage(), STATUS_FILTERS, FILTERS, Breakdown, SOURCE_LABEL (+63 more) +Cohesion: 0.05 +Nodes (50): ApiResponse, PaginatedResponse, formatDate(), ALL_STATUSES, AppointmentDetailPage(), STATUS_FILTERS, FILTERS, Breakdown (+42 more) ### Community 4 - "Community 4" -Cohesion: 0.06 -Nodes (8): DoctorService, Doctor, DoctorServiceRepository, Collection, self, User, WeeklySchedule, ManagerRegistry +Cohesion: 0.05 +Nodes (11): DoctorServiceController, DoctorService, Doctor, DoctorServiceRepository, Collection, self, User, WeeklySchedule (+3 more) ### Community 5 - "Community 5" Cohesion: 0.07 @@ -725,7 +743,7 @@ Nodes (5): Clinic, Collection, Doctor, self, User ### Community 8 - "Community 8" Cohesion: 0.08 -Nodes (28): useSubscription(), AdminLayout(), avatarBg(), buildSections(), HUES, Props, ROLE_LABELS, Section (+20 more) +Nodes (27): useSubscription(), AdminLayout(), avatarBg(), buildSections(), HUES, Props, ROLE_LABELS, Section (+19 more) ### Community 9 - "Community 9" Cohesion: 0.04 @@ -736,28 +754,28 @@ Cohesion: 0.04 Nodes (46): Clinic Address Management, Clinic API, DELETE `/api/v1/admin/clinic/{clinicUuid}/doctor/{doctorUuid}`, `DELETE /api/v1/clinic/{clinicUuid}/address/{addressUuid}`, Errors, Errors, Errors, Errors (+38 more) ### Community 11 - "Community 11" -Cohesion: 0.05 -Nodes (33): usePaymentConfig(), ApiResponse, emptyFeatures(), FEATURE_KEYS, FEATURE_LABELS, PeriodForm, periodSchema, PLAN_DISPLAY (+25 more) +Cohesion: 0.06 +Nodes (38): PaymentConfig, PaymentGatewayInfo, usePaymentConfig(), SmsPage(), STATUS_LOG_META, Tab, TAG_FILTER_OPTIONS, TAG_LABELS (+30 more) ### Community 12 - "Community 12" Cohesion: 0.05 Nodes (44): Clinic Doctor Invitation API, DELETE `/api/v1/admin/clinic/invitation/{invUuid}`, Errors, Errors, Errors, Errors, Errors, Errors (+36 more) ### Community 13 - "Community 13" -Cohesion: 0.08 -Nodes (28): cn(), formatDateTime(), iranMobileOptionalSchema, iranMobileSchema, isValidIranMobile(), maskMobile(), sanitizeMobileInput(), toDate() (+20 more) +Cohesion: 0.07 +Nodes (37): FreeVisitPrice(), Pricing, cn(), formatDateTime(), formatRial(), iranMobileOptionalSchema, iranMobileSchema, isValidIranMobile() (+29 more) ### Community 14 - "Community 14" Cohesion: 0.15 Nodes (8): AppointmentSettingsController, Holiday, HolidayRepository, JsonResponse, Request, User, Doctor, ManagerRegistry ### Community 15 - "Community 15" -Cohesion: 0.10 -Nodes (13): PaymentController, MockGateway, SepGateway, JsonResponse, Payment, PaymentGatewayInterface, Request, Response (+5 more) +Cohesion: 0.09 +Nodes (13): PaymentController, MellatGateway, MockGateway, JsonResponse, Payment, PaymentGatewayInterface, Request, Response (+5 more) ### Community 16 - "Community 16" -Cohesion: 0.07 -Nodes (7): PatientSession, SmsWallet, Appointment, Collection, PatientRecord, self, SessionService +Cohesion: 0.06 +Nodes (8): PatientSession, SmsWallet, AppointmentExpiryService, Appointment, Collection, PatientRecord, self, SessionService ### Community 17 - "Community 17" Cohesion: 0.05 @@ -768,20 +786,20 @@ Cohesion: 0.05 Nodes (38): API, API, API, API, API, Route, Route, Route (+30 more) ### Community 19 - "Community 19" -Cohesion: 0.09 -Nodes (17): Contract, InsuranceOption, KIND_LABEL, FormData, schema, AdminUser, ChangeRoleModal(), getPrimaryRole() (+9 more) +Cohesion: 0.20 +Nodes (8): AdminUser, ChangeRoleModal(), getPrimaryRole(), HUES_LIST, ROLE_META, ROLE_TABS, RoleBadge(), UserStats ### Community 20 - "Community 20" -Cohesion: 0.12 -Nodes (4): AdminApiController, InputValidator, JsonResponse, Request +Cohesion: 0.15 +Nodes (3): AdminApiController, JsonResponse, Request ### Community 21 - "Community 21" Cohesion: 0.05 -Nodes (42): FreeVisitPrice(), Pricing, formatNumber(), formatRial(), ClinicDetailPage(), AdminCharts, AdminDashboard(), AdminRecent (+34 more) +Nodes (37): formatNumber(), ClinicDetailPage(), AdminCharts, AdminDashboard(), AdminRecent, AdminStats, APPT_CLS, APPT_COLOR (+29 more) ### Community 22 - "Community 22" -Cohesion: 0.11 -Nodes (14): RatingController, Like, Rate, LikeRepository, RateRepository, JsonResponse, Request, User (+6 more) +Cohesion: 0.09 +Nodes (15): RatingController, Like, Rate, CommentListNPlusOneTest, LikeRepository, RateRepository, JsonResponse, Request (+7 more) ### Community 23 - "Community 23" Cohesion: 0.05 @@ -796,8 +814,8 @@ Cohesion: 0.05 Nodes (39): Appointment API, Error Responses, Errors, Errors, Errors, Errors, Errors, Errors (+31 more) ### Community 26 - "Community 26" -Cohesion: 0.15 -Nodes (7): InsuranceController, EntityInsurancePricing, EntityInsurancePricingRepository, JsonResponse, Request, User, ManagerRegistry +Cohesion: 0.24 +Nodes (4): InsuranceController, JsonResponse, Request, User ### Community 27 - "Community 27" Cohesion: 0.05 @@ -808,8 +826,8 @@ Cohesion: 0.09 Nodes (4): Appointment, Doctor, self, User ### Community 29 - "Community 29" -Cohesion: 0.06 -Nodes (34): Bulk import / export, DELETE `/api/v1/admin/city/{id}`, DELETE `/api/v1/admin/province/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/cities` (+26 more) +Cohesion: 0.10 +Nodes (21): Bulk import / export, DELETE `/api/v1/admin/city/{id}`, DELETE `/api/v1/admin/province/{id}`, Errors, Errors, GET `/api/v1/admin/provinces`, GET `/api/v1/categorys/{bundle}` *(Legacy)*, GET `/api/v1/provinces` (+13 more) ### Community 30 - "Community 30" Cohesion: 0.08 @@ -824,8 +842,8 @@ Cohesion: 0.06 Nodes (32): 10. Modal / Dialog, 11. Toast Notifications, 12. Empty States & Loading, 13. Page Header (هر صفحه), 14. تکنولوژی Stack, 15. Responsive Breakpoints, 16. Dark Mode (اختیاری — فاز دوم), 17. نمونه رنگ‌بندی صفحه داشبورد (+24 more) ### Community 33 - "Community 33" -Cohesion: 0.08 -Nodes (20): CoverageRow, Draft, KIND, TenantInsurance, ServiceTariffModal(), TariffResponse, TariffRow, EMPTY_ITEMS (+12 more) +Cohesion: 0.04 +Nodes (40): CoverageRow, Draft, KIND, TenantInsurance, ServiceTariffModal(), TariffResponse, TariffRow, Contract (+32 more) ### Community 34 - "Community 34" Cohesion: 0.06 @@ -857,7 +875,7 @@ Nodes (4): User, PasswordAuthenticatedUserInterface, self, UserInterface ### Community 41 - "Community 41" Cohesion: 0.06 -Nodes (23): CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, LogoUploadField(), ProvinceForm, provinceSchema (+15 more) +Nodes (21): CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, ProvinceForm, provinceSchema, ServiceForm (+13 more) ### Community 42 - "Community 42" Cohesion: 0.07 @@ -888,8 +906,8 @@ Cohesion: 0.11 Nodes (4): Payment, Appointment, self, User ### Community 49 - "Community 49" -Cohesion: 0.07 -Nodes (21): AppointmentsPage(), BookingSlot, CancelledBadge(), DateNavigator(), EMPTY_ARR, getPersianWeekDay(), navBtnSx, NewAppointmentModal() (+13 more) +Cohesion: 0.09 +Nodes (18): AppointmentsPage(), BookingSlot, CancelledBadge(), DateNavigator(), EMPTY_ARR, getPersianWeekDay(), navBtnSx, NewAppointmentModal() (+10 more) ### Community 50 - "Community 50" Cohesion: 0.07 @@ -941,15 +959,15 @@ Nodes (22): Billing API — صورتحساب (فاز ۴ سیستم صورتحس ### Community 62 - "Community 62" Cohesion: 0.08 -Nodes (24): Bulk import / export, DELETE `/api/v1/admin/specialty/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/specialties`, GET `/api/v1/specialties` (+16 more) +Nodes (25): Bulk import / export, DELETE `/api/v1/admin/specialty/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/specialties`, GET `/api/v1/specialties` (+17 more) ### Community 63 - "Community 63" Cohesion: 0.22 Nodes (5): AuthController, RateLimiterFactory, JsonResponse, Request, User ### Community 64 - "Community 64" -Cohesion: 0.20 -Nodes (7): SmsWalletController, SmsSettingsRepository, SmsSettings, JsonResponse, Request, User, ManagerRegistry +Cohesion: 0.32 +Nodes (4): SmsWalletController, JsonResponse, Request, User ### Community 65 - "Community 65" Cohesion: 0.08 @@ -992,8 +1010,8 @@ Cohesion: 0.16 Nodes (5): DoctorSecretary, Clinic, Doctor, self, User ### Community 77 - "Community 77" -Cohesion: 0.10 -Nodes (13): Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL, STATUS_FILTERS, STATUS_META, IbanItem (+5 more) +Cohesion: 0.08 +Nodes (15): Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL, STATUS_FILTERS, STATUS_META, IbanItem (+7 more) ### Community 78 - "Community 78" Cohesion: 0.12 @@ -1021,7 +1039,7 @@ Nodes (29): devDependencies, @babel/core, @babel/preset-env, @babel/preset-react ### Community 86 - "Community 86" Cohesion: 0.06 -Nodes (15): AppointmentExpiryServiceTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, ServiceItemDeleteCleanupTest, ServiceItemStaffOwnershipTest, EntityManagerInterface, KernelBrowser (+7 more) +Nodes (15): AppointmentExpiryServiceTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, ServiceItemStaffOwnershipTest, EntityManagerInterface, KernelBrowser, CommentPaginationTest (+7 more) ### Community 87 - "Community 87" Cohesion: 0.10 @@ -1044,8 +1062,8 @@ Cohesion: 0.10 Nodes (20): DELETE `/api/v1/admin/users/{uuid}`, Errors, Errors, GET `/api/v1/admin/users`, GET `/api/v1/admin/users/stats`, GET `/api/v1/admin/users/{uuid}`, POST `/api/v1/admin/users/{uuid}/status`, PUT `/api/v1/admin/users/{uuid}` (+12 more) ### Community 92 - "Community 92" -Cohesion: 0.10 -Nodes (20): Bulk import / export, DELETE `/api/v1/admin/doctor-service/{id}`, Doctor Service API, Errors, Errors, Errors, Errors, GET `/api/v1/admin/doctor-services` (+12 more) +Cohesion: 0.09 +Nodes (21): Bulk import / export, DELETE `/api/v1/admin/doctor-service/{id}`, Doctor Service API, Errors, Errors, Errors, Errors, GET `/api/v1/admin/doctor-services` (+13 more) ### Community 93 - "Community 93" Cohesion: 0.10 @@ -1084,8 +1102,8 @@ Cohesion: 0.10 Nodes (19): Backend — endpoint اشتراک, Frontend — App.tsx, Frontend — authStore, Frontend — Sidebar, اعمال محدودیت‌های اشتراک در پنل ادمین (Frontend Gate), ترتیب اجرا, زمینه, فایل‌های مرتبط (+11 more) ### Community 102 - "Community 102" -Cohesion: 0.11 -Nodes (19): Bulk import / export, DELETE `/api/v1/admin/tag/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/tags`, GET `/api/v1/tags` (+11 more) +Cohesion: 0.10 +Nodes (20): Bulk import / export, DELETE `/api/v1/admin/tag/{id}`, Errors, Errors, Errors, Errors, GET `/api/v1/admin/tags`, GET `/api/v1/tags` (+12 more) ### Community 103 - "Community 103" Cohesion: 0.35 @@ -1108,8 +1126,8 @@ Cohesion: 0.32 Nodes (6): AppointmentController, Appointment, Doctor, JsonResponse, Request, User ### Community 108 - "Community 108" -Cohesion: 0.18 -Nodes (7): BaseController, CategoryController, CategoryImportController, JsonResponse, JsonResponse, Request, JsonResponse +Cohesion: 0.13 +Nodes (10): BaseController, CategoryController, CategoryImportController, SmsMessageController, JsonResponse, JsonResponse, Request, JsonResponse (+2 more) ### Community 109 - "Community 109" Cohesion: 0.29 @@ -1316,8 +1334,8 @@ Cohesion: 0.13 Nodes (13): Architecture, Auth, Backend (PHP/Symfony), Backend — `src/`, Category / Bundle system, Commands, Database, First-time setup (+5 more) ### Community 163 - "Community 163" -Cohesion: 0.13 -Nodes (14): autoload, autoload-dev, psr-4, psr-4, conflict, symfony/symfony, description, license (+6 more) +Cohesion: 0.11 +Nodes (18): autoload, autoload-dev, psr-4, psr-4, conflict, symfony/symfony, description, extra (+10 more) ### Community 164 - "Community 164" Cohesion: 0.29 @@ -1364,7 +1382,7 @@ Cohesion: 0.35 Nodes (5): RepresentationController, JsonResponse, Representation, Request, User ### Community 176 - "Community 176" -Cohesion: 0.36 +Cohesion: 0.33 Nodes (5): SecretaryController, DoctorSecretary, JsonResponse, Request, User ### Community 177 - "Community 177" @@ -1457,7 +1475,7 @@ Nodes (13): Endpoint ها, PATCH /api/v1/secretary/{uuid}, POST /api/v1/secretar ### Community 201 - "Community 201" Cohesion: 0.15 -Nodes (13): Admin API, Clinic Invitation Management, GET `/api/v1/admin/payments`, GET `/api/v1/admin/representations`, GET /api/v1/admin/settings, PATCH /api/v1/admin/settings, Payment Management, Query Parameters (+5 more) +Nodes (13): Admin API, Clinic Invitation Management, GET `/api/v1/admin/representations`, GET `/api/v1/admin/secretaries`, GET /api/v1/admin/settings, PATCH /api/v1/admin/settings, Query Parameters, Query Parameters (+5 more) ### Community 202 - "Community 202" Cohesion: 0.15 @@ -1480,16 +1498,16 @@ Cohesion: 0.35 Nodes (6): DashboardController, Clinic, DoctorSecretary, JsonResponse, Request, User ### Community 207 - "Community 207" -Cohesion: 0.07 -Nodes (30): ۲. مدل داده و موجودیت‌ها, ۲.۱ کاربر (User), ۲.۱۰ پرداخت (Payment Types), ۲.۱۰.۱ پرداخت نوبت, ۲.۱۰.۲ پرداخت اشتراک, ۲.۱۱ پروفایل بیمار (Profile), ۲.۱۲ وبلاگ (Blog), ۲.۱۳ نظرات، لایک و امتیازدهی (+22 more) +Cohesion: 0.15 +Nodes (13): ۲. مدل داده و موجودیت‌ها, ۲.۱ کاربر (User), ۲.۱۰ پرداخت (Payment Types), ۲.۱۰.۱ پرداخت نوبت, ۲.۱۰.۲ پرداخت اشتراک, ۲.۱۱ پروفایل بیمار (Profile), ۲.۱۲ وبلاگ (Blog), ۲.۳ دکتر (Doctor) (+5 more) ### Community 208 - "Community 208" Cohesion: 0.23 Nodes (4): Like, Comment, self, User ### Community 213 - "Community 213" -Cohesion: 0.27 -Nodes (3): MellatGateway, PaymentInitResult, PaymentVerifyResult +Cohesion: 0.08 +Nodes (23): زمینه, ساده‌سازی «تنظیمات پیامک (SMS)» — فقط API Key از env, فایل‌های مرتبط, نکات مهم, هدف, وضعیت فعلی (کد واقعی), وظایف, پروژه (+15 more) ### Community 214 - "Community 214" Cohesion: 0.15 @@ -1548,8 +1566,8 @@ Cohesion: 0.30 Nodes (6): AbstractAuthenticator, Passport, PasswordAuthenticator, Request, Response, TokenInterface ### Community 228 - "Community 228" -Cohesion: 0.17 -Nodes (12): Bulk import / export, DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, GET `/api/v1/insurance/{id}`, GET `/api/v1/insurance-pricing`, Insurance API, Response `200` (+4 more) +Cohesion: 0.05 +Nodes (43): Bulk import / export, DELETE `/api/v1/admin/insurance/{id}`, DELETE `/api/v1/billing/tenant-insurances/{uuid}`, DELETE `/api/v1/insurance/{id}`, EntityInsurancePricing — قیمت‌گذاری ویزیت بر اساس بیمه, Errors, Errors, Errors (+35 more) ### Community 229 - "Community 229" Cohesion: 0.15 @@ -1648,8 +1666,8 @@ Cohesion: 0.18 Nodes (11): 1. 🔵 `POST` refresh token, 1. احراز هویت (Authentication), 2. 🟢 `GET` X-CSRF-Token, 3. 🟢 `GET` user info 🆕, Request Body, بخش دوم — مستند کامل API, خطاهای عمومی, فهرست مطالب (+3 more) ### Community 255 - "Community 255" -Cohesion: 0.11 -Nodes (19): GET /api/v1/appointment-settings/slots — دریافت اسلات‌های خالی, GET /api/v1/categories/cities — شهرها, GET /api/v1/categories/states — استان‌ها, GET /api/v1/doctors/{id}, GET /api/v1/doctors/{id}/insurances, GET /api/v1/representations/{id}, GET /oauth/userinfo — اطلاعات کاربر (سازگار با دروپال), POST /api/v1/appointment-settings/holidays — ثبت تعطیلی (فقط ادمین) (+11 more) +Cohesion: 0.18 +Nodes (11): GET /api/v1/doctors/{id}, GET /api/v1/doctors/{id}/insurances, GET /api/v1/representations/{id}, GET /oauth/userinfo — اطلاعات کاربر (سازگار با دروپال), POST /api/v1/representations/{id}/bank-accounts, POST /oauth/token — تجدید توکن (Refresh), POST /oauth/token — ورود به سیستم, Task-02: احراز هویت (Authentication) (+3 more) ### Community 256 - "Community 256" Cohesion: 0.29 @@ -1684,8 +1702,8 @@ Cohesion: 0.33 Nodes (4): RepresentationRepository, ManagerRegistry, Representation, User ### Community 265 - "Community 265" -Cohesion: 0.08 -Nodes (27): calcFinalPrice(), EMPTY_RECORDS, EMPTY_SESSIONS, fileNumber(), getPatientName(), getPatientPhone(), InsurancePricing, MyPatientsPageInner() (+19 more) +Cohesion: 0.15 +Nodes (17): calcFinalPrice(), EMPTY_RECORDS, EMPTY_SESSIONS, fileNumber(), getPatientName(), getPatientPhone(), InsurancePricing, MyPatientsPageInner() (+9 more) ### Community 266 - "Community 266" Cohesion: 0.33 @@ -1720,7 +1738,7 @@ Cohesion: 0.18 Nodes (10): Endpoint های موجود که تغییر می‌کنند, GET /api/v1/admin/dashboard/charts?from=UNIX&to=UNIX, GET /api/v1/dashboard/clinic, GET /api/v1/dashboard/doctor, تسک ۱۶: داشبورد هوشمند — چارت + فیلتر زمانی, توضیح, زمان تخمینی, فیلتر بازه زمانی (+2 more) ### Community 274 - "Community 274" -Cohesion: 0.19 +Cohesion: 0.21 Nodes (5): Authentication, ClinicPro — API Documentation Index, Error Code Reference, Modules, Standard Response Envelope ### Community 275 - "Community 275" @@ -1732,8 +1750,8 @@ Cohesion: 0.20 Nodes (9): Architecture Audit — ClinicPro Symfony 7 Migration, Architecture Score (بعد از اصلاحات), Architecture Violations, Executive Summary, Final Verdict (بعد از اصلاحات), Missing Requirements (کامل), اصلاحات اعمال‌شده (بعد از Audit), دلیل تصمیم (+1 more) ### Community 277 - "Community 277" -Cohesion: 0.08 -Nodes (23): GET /api/v1/sms/balance — موجودی حساب پیامک, POST /api/v1/sms/queue — افزودن به صف, بخش اول — مستند محصول (PRD), ثبت‌نام دکتر — از طریق نماینده, ثبت‌نام دکتر — از طریق کلینیک, ثبت‌نام دکتر — مستقل, فهرست کلی, کلینیک پرو — مستند جامع فنی و API (+15 more) +Cohesion: 0.20 +Nodes (9): بخش اول — مستند محصول (PRD), فهرست کلی, کلینیک پرو — مستند جامع فنی و API, ۵. فهرست مشکلات شناسایی‌شده و اصلاحات لازم, ۶. پیوست, ۶.۱ دیاگرام وضعیت نوبت, ۶.۲ جریان کمیسیون, ۶.۳ بررسی محدودیت منشی (+1 more) ### Community 279 - "Community 279" Cohesion: 0.20 @@ -1836,8 +1854,8 @@ Cohesion: 0.12 Nodes (16): آماده‌سازی پروژه ClinicPro برای دیپلوی روی Coolify با Docker Compose, زمینه, فایل‌های مرتبط, نکات مهم (محدودیت‌ها و edge caseها), هدف, وظایف, ۱. ساخت `Dockerfile` چندمرحله‌ای, ۱۰. ساخت راهنمای `docs/deploy/coolify.md` (+8 more) ### Community 304 - "Community 304" -Cohesion: 0.04 -Nodes (52): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 31. 🟡 `PATCH` patch, 32. 🔵 `POST` post, 33. 🔵 `POST` image_clinic, 34. 🔵 `POST` image logo, 36. 🟢 `GET` get my rate, 37. 🔵 `POST` post (+44 more) +Cohesion: 0.22 +Nodes (9): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 33. 🔵 `POST` image_clinic, 6. کلینیک (Clinic), هدرهای اضافی, پارامترهای Query, پاسخ‌ها, پاسخ‌ها (+1 more) ### Community 306 - "Community 306" Cohesion: 0.07 @@ -1984,8 +2002,8 @@ Cohesion: 0.26 Nodes (3): TenantInsuranceService, CoverageRule, TenantInsurance ### Community 347 - "Community 347" -Cohesion: 0.36 -Nodes (3): DoctorServiceController, JsonResponse, Request +Cohesion: 0.11 +Nodes (18): زمینه, فاز ۰ — Baseline, فاز ۱ — قرارداد پاسخ و Envelope, فاز ۲ — احراز هویت و مجوزها (Auth / RBAC), فاز ۳ — اعتبارسنجی ورودی و مدیریت خطا, فاز ۴ — امنیت API, فاز ۵ — پنل ادمین React SPA, فاز ۶ — یکپارچگی و سناریوهای واقعی کاربر (E2E) (+10 more) ### Community 348 - "Community 348" Cohesion: 0.39 @@ -2152,8 +2170,8 @@ Cohesion: 0.33 Nodes (6): GET `/api/v1/admin/sms/logs`, GET `/api/v1/admin/sms/templates`, Query Parameters, Response `200`, Response `200`, SMS Management (Admin) ### Community 392 - "Community 392" -Cohesion: 0.33 -Nodes (6): GET `/api/v1/admin/sms/templates`, GET /api/v1/sms/settings, PATCH /api/v1/sms/settings, Response `200`, SMS API, SMS Settings +Cohesion: 0.67 +Nodes (3): GET /api/v1/sms/settings, PATCH /api/v1/sms/settings, SMS Settings ### Community 393 - "Community 393" Cohesion: 0.33 @@ -2172,12 +2190,12 @@ Cohesion: 0.21 Nodes (6): ClaimAmountBoundsTest, ClaimsListNPlusOneTest, ClaimItem, Claim, Doctor, User ### Community 398 - "Community 398" -Cohesion: 0.33 +Cohesion: 0.29 Nodes (4): initiate(), verify(), PaymentInitResult, PaymentVerifyResult -### Community 400 - "Community 400" +### Community 399 - "Community 399" Cohesion: 0.23 -Nodes (5): AbstractMigration, Schema, Version20260609131553, Schema, Version20260609134741 +Nodes (5): AbstractMigration, Schema, Version20260609130407, Schema, Version20260619121047 ### Community 405 - "Community 405" Cohesion: 0.47 @@ -2192,12 +2210,12 @@ Cohesion: 0.17 Nodes (11): دیپلوی ClinicPro روی Coolify (Docker Compose), رفع اشکال, مراحل دیپلوی, معماری دیپلوی, نکات عملیاتی, چند دامنه فرانت‌اند (مهم), ۱. ساخت Resource در Coolify, ۲. اختصاص دامنه (+3 more) ### Community 440 - "Community 440" -Cohesion: 0.43 -Nodes (3): SmsMessageController, JsonResponse, Request +Cohesion: 0.11 +Nodes (18): [F10] راهنمای کهنه در `CLAUDE.md`: endpoint `categorys/{bundle}` منتقل شده, [F11] داشبورد دکتر `GET /api/v1/dashboard/doctor` همیشه 500 (فیلد ناموجود در DQL) — ✅ رفع شد, [F1] phpstan: مقایسهٔ همیشه‌درست در محاسبهٔ estimated SMS — ✅ رفع شد, [F2] تست‌های PHPUnit به API خارجی Kavenegar درخواست واقعی می‌زنند, [F3] دیتابیس تست seed نشده — فقط کاربر ادمین وجود دارد, [F4] اسکریپت seeder `create_test_users.php` وجود ندارد, [F5] ادمین با JWT معتبر به `/api/doc` (Swagger UI) دسترسی ندارد (401), [F6] ناسازگاری کدهای خطا بین دامنه‌ها (+10 more) ### Community 452 - "Community 452" -Cohesion: 0.10 -Nodes (12): ClinicAddress, ClinicDoctorItem, ClinicInvitation, EditForm, editSchema, HUES_LIST, INV_STATUS_MAP, IRAN_CENTER (+4 more) +Cohesion: 0.08 +Nodes (16): ClinicAddress, ClinicDoctorItem, ClinicInvitation, EditForm, editSchema, HUES_LIST, INV_STATUS_MAP, IRAN_CENTER (+8 more) ### Community 456 - "Community 456" Cohesion: 0.29 @@ -2208,8 +2226,8 @@ Cohesion: 0.47 Nodes (6): formatPersianDate(), gToJ(), jFirstDayOfWeek(), PersianDateInput(), todayGregorian(), toPersianNums() ### Community 459 - "Community 459" -Cohesion: 0.33 -Nodes (6): API موجود (نیاز به تغییر ندارند), اپیک‌ها, اپیک ۳ — منشی (Secretary) — تکمیل, تغییرات مورد نیاز, توضیح, نیازمندی‌های کارکردی +Cohesion: 0.40 +Nodes (5): API موجود (نیاز به تغییر ندارند), اپیک ۳ — منشی (Secretary) — تکمیل, تغییرات مورد نیاز, توضیح, نیازمندی‌های کارکردی ### Community 460 - "Community 460" Cohesion: 0.33 @@ -2311,6 +2329,10 @@ Nodes (5): Errors, GET `/api/v1/representation/dashboard/summary`, GET `/api/v1/ Cohesion: 0.40 Nodes (5): Admin Endpoints, GET /api/v1/admin/sms/settings/review, GET /api/v1/admin/sms/wallet-report, POST /api/v1/admin/sms/settings/{id}/approve, POST /api/v1/admin/sms/settings/{id}/reject +### Community 491 - "Community 491" +Cohesion: 0.15 +Nodes (5): EntityInsurancePricing, TenantInsuranceCleanupTest, EntityInsurancePricingRepository, TenantInsuranceCleanupService, ManagerRegistry + ### Community 493 - "Community 493" Cohesion: 0.20 Nodes (9): Backend Audit Backlog — ClinicPro, ☐ CRITICAL, ✅ DONE (committed on backend-audit), ☐ EPICS (design debt — cross-repo, defer; do NOT quick-fix), ☐ HIGH, ☐ LOW, ☐ MEDIUM, Progress (this audit session) (+1 more) @@ -2319,6 +2341,10 @@ Nodes (9): Backend Audit Backlog — ClinicPro, ☐ CRITICAL, ✅ DONE (committe Cohesion: 0.50 Nodes (4): Error Codes, POST `/api/v1/user/reset-password`, Request Body, Response `200` +### Community 495 - "Community 495" +Cohesion: 0.12 +Nodes (15): CORS — `config/packages/nelmio_cors.yaml`, MellatGateway — تشخیص فعال‌بودن, payment/config — `PaymentController::config()` (خط ۵۴۶), resolveGateway + callback (کد واقعی), رفع باگ‌های پروداکشن: CORS + payment/config 500 + درگاه‌های فعال و callback ملت, زمینه, فایل‌های مرتبط, فرانت — `SubscriptionPage.tsx` (+7 more) + ### Community 496 - "Community 496" Cohesion: 0.50 Nodes (4): Errors, POST `/api/v1/user/send-code`, Request Body, Response `200` @@ -2336,8 +2362,8 @@ Cohesion: 0.40 Nodes (5): addMinutes(), calcSlotCount(), hasOverlap(), parseMinutes(), SessionEditor() ### Community 500 - "Community 500" -Cohesion: 0.40 -Nodes (5): API موجود (نیاز به endpoint جدید ندارد), اپیک ۷ — داشبورد هوشمند (Smart Dashboard), تغییر مورد نیاز, توضیح, نیازمندی‌های کارکردی +Cohesion: 0.33 +Nodes (6): API موجود (نیاز به endpoint جدید ندارد), اپیک‌ها, اپیک ۷ — داشبورد هوشمند (Smart Dashboard), تغییر مورد نیاز, توضیح, نیازمندی‌های کارکردی ### Community 501 - "Community 501" Cohesion: 0.40 @@ -2480,16 +2506,16 @@ Cohesion: 0.50 Nodes (4): Errors, POST `/api/v1/admin/insurance`, Request Body (`application/json`), Response `201` ### Community 542 - "Community 542" -Cohesion: 0.50 -Nodes (4): Errors, POST `/api/v1/insurance/`, Request Body (`application/json`), Response `201` +Cohesion: 0.15 +Nodes (11): emptyFeatures(), FEATURE_KEYS, FEATURE_LABELS, PeriodForm, periodSchema, PLAN_DISPLAY, PlanForm, planSchema (+3 more) ### Community 543 - "Community 543" Cohesion: 0.50 Nodes (4): Errors, PATCH `/api/v1/insurance/{id}`, Request Body, Response `200` ### Community 544 - "Community 544" -Cohesion: 0.50 -Nodes (4): PUT `/api/v1/insurance-pricing`, Request Body, Response `200`, خطاها +Cohesion: 0.15 +Nodes (12): ارسال پیامک خوش‌آمد هنگام تعریف منشی جدید, زمینه, فایل‌های مرتبط, نکات مهم, هدف, وضعیت فعلی, وظایف, پروژه (+4 more) ### Community 545 - "Community 545" Cohesion: 0.50 @@ -2636,12 +2662,12 @@ Cohesion: 0.40 Nodes (5): Errors, PATCH `/api/v1/clinic-pro/doctor-address/{id}`, Path Parameters, Request Body, Response `200` ### Community 597 - "Community 597" -Cohesion: 0.67 -Nodes (3): DELETE `/api/v1/sms/template/{uuid}`, Errors, Response `200` +Cohesion: 0.20 +Nodes (10): Configuration, DELETE `/api/v1/sms/template/{uuid}`, Errors, Errors, GET `/api/v1/admin/sms/templates`, GET `/api/v1/sms/template/{uuid}`, Response `200`, Response `200` (+2 more) ### Community 598 - "Community 598" -Cohesion: 0.67 -Nodes (3): Errors, GET `/api/v1/sms/template/{uuid}`, Response `200` +Cohesion: 0.31 +Nodes (3): SepGateway, PaymentInitResult, PaymentVerifyResult ### Community 599 - "Community 599" Cohesion: 0.67 @@ -2668,8 +2694,8 @@ Cohesion: 0.67 Nodes (3): نقاط ضعف, نقاط قوت, ۶. تحلیل API Design ### Community 606 - "Community 606" -Cohesion: 0.40 -Nodes (5): DELETE `/api/v1/billing/tenant-insurances/{uuid}`, GET `/api/v1/billing/tenant-insurances`, PATCH `/api/v1/billing/tenant-insurances/{uuid}`, POST `/api/v1/billing/tenant-insurances`, TenantInsurance — قراردادهای بیمه‌ی tenant (فاز ۱ سیستم صورتحساب) +Cohesion: 0.25 +Nodes (8): ثبت‌نام دکتر — از طریق نماینده, ثبت‌نام دکتر — از طریق کلینیک, ثبت‌نام دکتر — مستقل, ۱. معرفی محصول, ۱.۱ نقش‌های سیستم, ۱.۲ فلوهای عملیاتی اصلی, ۱.۳ پلن‌های اشتراک, ۱.۴ سیستم پیامک ### Community 607 - "Community 607" Cohesion: 0.39 @@ -2680,8 +2706,8 @@ Cohesion: 0.67 Nodes (3): بک‌اند, فرانت‌اند, وضعیت فعلی کد (مهم — قبل از تغییر بخوان) ### Community 618 - "Community 618" -Cohesion: 0.12 -Nodes (6): ServiceCoverageNPlusOneTest, TenantInsuranceCleanupTest, TenantServiceCoverageRepository, TenantInsuranceCleanupService, ManagerRegistry, TenantServiceCoverage +Cohesion: 0.16 +Nodes (5): ServiceItemDeleteCleanupTest, ServiceCoverageNPlusOneTest, TenantServiceCoverageRepository, ManagerRegistry, TenantServiceCoverage ### Community 631 - "Community 631" Cohesion: 0.50 @@ -2696,28 +2722,24 @@ Cohesion: 0.50 Nodes (4): Errors, GET `/api/v1/doctor/{uuid}`, Path Parameters, Response `200` ### Community 634 - "Community 634" -Cohesion: 0.50 -Nodes (4): Errors, GET `/api/v1/admin/insurances`, Query Parameters, Response `200` +Cohesion: 0.25 +Nodes (8): ۲.۲ انواع دسته‌بندی (Category Types), ۲.۲.۱ تگ (Tag), ۲.۲.۲ استان (State), ۲.۲.۳ شهر (City), ۲.۲.۴ بیمه پایه (Basic Insurance), ۲.۲.۵ بیمه مکمل (Supplementary Insurance), ۲.۲.۶ تخصص دکتر (Doctor Specialty), ۲.۲.۷ خدمات دکتر (Doctor Services) ### Community 635 - "Community 635" -Cohesion: 0.50 -Nodes (4): Errors, PATCH `/api/v1/admin/insurance/{id}`, Path Parameters, Response `200` +Cohesion: 0.43 +Nodes (5): BeforeInstallPromptEvent, usePwaInstall(), PwaInstallBanner(), detectIOS(), PwaLoginCard() + +### Community 636 - "Community 636" +Cohesion: 0.48 +Nodes (3): SmsSettingsRepository, SmsSettings, ManagerRegistry ### Community 638 - "Community 638" Cohesion: 0.67 Nodes (3): GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`, Path Parameters, Response `200` ### Community 639 - "Community 639" -Cohesion: 0.67 -Nodes (3): GET `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`, PUT `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`, TenantServiceCoverage — پوشش خدمت تحت یک قرارداد بیمه (فاز ۲) - -### Community 640 - "Community 640" -Cohesion: 0.67 -Nodes (3): GET `/api/v1/insurances`, Query Parameters, Response `200` - -### Community 641 - "Community 641" -Cohesion: 0.67 -Nodes (3): POST `/api/v1/admin/insurance/{id}/upload-logo`, Request, Response `200` +Cohesion: 0.33 +Nodes (6): GET /api/v1/sms/balance — موجودی حساب پیامک, POST /api/v1/sms/queue — افزودن به صف, ۴. سیستم حساب و صف پیامک, ۴.۱ حساب پیامک (SMS Account), ۴.۲ صف پیامک (SMS Queue), ۴.۳ API پیامک ### Community 646 - "Community 646" Cohesion: 0.40 @@ -2728,12 +2750,12 @@ Cohesion: 0.40 Nodes (5): 41. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 649 - "Community 649" -Cohesion: 0.50 -Nodes (4): GET `/api/v1/admin/secretaries`, Query Parameters, Response `200`, Secretary Management +Cohesion: 0.40 +Nodes (5): 31. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 650 - "Community 650" -Cohesion: 0.50 -Nodes (4): extra, symfony, allow-contrib, require +Cohesion: 0.40 +Nodes (5): 32. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها ### Community 651 - "Community 651" Cohesion: 0.53 @@ -2751,33 +2773,105 @@ Nodes (4): 38. 🟢 `GET` Unapproved comments, هدرهای اضافی, پارا Cohesion: 0.50 Nodes (4): 44. 🟢 `GET` list comment, هدرهای اضافی, پارامترهای Query, پاسخ‌ها +### Community 655 - "Community 655" +Cohesion: 0.40 +Nodes (5): 37. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخ‌ها + +### Community 656 - "Community 656" +Cohesion: 0.40 +Nodes (5): ۲.۸ تنظیمات نوبت (Appointment Settings), ۲.۸.۱ برنامه هفتگی (Weekly Schedule), ۲.۸.۲ تعطیلات (Holidays), ۲.۸.۳ لغو تعطیل (Date Override), ۲.۸.۴ الگوریتم محاسبه اسلات‌های خالی + +### Community 657 - "Community 657" +Cohesion: 0.50 +Nodes (4): GET `/api/v1/admin/payments`, Payment Management, Query Parameters, Response `200` + +### Community 658 - "Community 658" +Cohesion: 0.50 +Nodes (4): Errors, PATCH `/api/v1/admin/province/{id}`, Path Parameters, Response `200` + +### Community 659 - "Community 659" +Cohesion: 0.50 +Nodes (4): Errors, POST `/api/v1/admin/city`, Request Body (`application/json`), Response `201` + +### Community 660 - "Community 660" +Cohesion: 0.50 +Nodes (4): 39. 🟡 `PATCH` Comment confirmation, مثال Request, هدرهای اضافی, پاسخ‌ها + +### Community 661 - "Community 661" +Cohesion: 0.50 +Nodes (4): 40. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها + ### Community 662 - "Community 662" Cohesion: 0.50 Nodes (4): Application Logs, GET `/api/v1/admin/logs`, Query Parameters, Response `200` +### Community 664 - "Community 664" +Cohesion: 0.50 +Nodes (4): 45. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخ‌ها + +### Community 665 - "Community 665" +Cohesion: 0.50 +Nodes (4): 46. 🟡 `PATCH` patch, مثال Request, هدرهای اضافی, پاسخ‌ها + +### Community 666 - "Community 666" +Cohesion: 0.50 +Nodes (4): GET /api/v1/appointment-settings/slots — دریافت اسلات‌های خالی, POST /api/v1/appointment-settings/holidays — ثبت تعطیلی (فقط ادمین), POST /api/v1/appointment-settings/overrides — ثبت Override توسط دکتر, Task-09: API تنظیمات نوبت + +### Community 667 - "Community 667" +Cohesion: 0.50 +Nodes (4): GET /api/v1/categories/cities — شهرها, GET /api/v1/categories/states — استان‌ها, Task-08: API دسته‌بندی‌ها, سایر Endpoint های دسته‌بندی — الزامی + +### Community 671 - "Community 671" +Cohesion: 0.50 +Nodes (4): ۲.۱۳ نظرات، لایک و امتیازدهی, ۲.۱۳.۱ نظر (Comment), ۲.۱۳.۲ لایک (Like), ۲.۱۳.۳ امتیاز (Rate) + ### Community 672 - "Community 672" Cohesion: 0.50 Nodes (4): GET `/api/v1/admin/settlements`, Query Parameters, Response `200`, Settlement Management +### Community 673 - "Community 673" +Cohesion: 0.67 +Nodes (3): GET `/api/v1/admin/cities`, Query Parameters, Response `200` + +### Community 674 - "Community 674" +Cohesion: 0.67 +Nodes (3): GET `/api/v1/cities`, Query Parameters, Response `200` + +### Community 675 - "Community 675" +Cohesion: 0.67 +Nodes (3): 34. 🔵 `POST` image logo, هدرهای اضافی, پاسخ‌ها + +### Community 676 - "Community 676" +Cohesion: 0.67 +Nodes (3): 36. 🟢 `GET` get my rate, هدرهای اضافی, پاسخ‌ها + +### Community 677 - "Community 677" +Cohesion: 0.67 +Nodes (3): 42. 🔴 `DELETE` delete, هدرهای اضافی, پاسخ‌ها + +### Community 678 - "Community 678" +Cohesion: 0.67 +Nodes (3): 43. 🟢 `GET` get, هدرهای اضافی, پاسخ‌ها + ## Knowledge Gaps -- **3564 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `TenantInsurance`, `CoverageRow`, `Draft` (+3559 more) +- **3640 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `TenantInsurance`, `CoverageRow`, `Draft` (+3635 more) These have ≤1 connection - possible missing edges or undocumented components. -- **129 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. +- **128 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes. ## Suggested Questions _Questions this graph is uniquely positioned to answer:_ -- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 275`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 300`, `Community 301`, `Community 175`, `Community 176`, `Community 177`, `Community 440`, `Community 58`, `Community 59`, `Community 63`, `Community 64`, `Community 70`, `Community 71`, `Community 75`, `Community 206`, `Community 347`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 109`, `Community 121`, `Community 122`, `Community 252`?** - _High betweenness centrality (0.028) - this node is a cross-community bridge._ -- **Why does `ApiTestCase` connect `Community 86` to `Community 609`, `Community 541`, `Community 484`, `Community 574`, `Community 618`, `Community 397`, `Community 495`, `Community 368`, `Community 497`, `Community 594`, `Community 562`, `Community 371`, `Community 565`, `Community 535`, `Community 636`, `Community 573`, `Community 318`, `Community 575`?** - _High betweenness centrality (0.019) - this node is a cross-community bridge._ -- **Why does `Version20260614181657` connect `Community 431` to `Community 400`?** +- **Why does `BaseController` connect `Community 108` to `Community 4`, `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 15`, `Community 275`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 300`, `Community 301`, `Community 175`, `Community 176`, `Community 177`, `Community 58`, `Community 59`, `Community 63`, `Community 64`, `Community 70`, `Community 71`, `Community 75`, `Community 206`, `Community 230`, `Community 103`, `Community 104`, `Community 107`, `Community 109`, `Community 121`, `Community 122`, `Community 252`?** + _High betweenness centrality (0.030) - this node is a cross-community bridge._ +- **Why does `AppointmentRepository` connect `Community 119` to `Community 53`?** _High betweenness centrality (0.017) - this node is a cross-community bridge._ +- **Why does `Version20260614181657` connect `Community 431` to `Community 399`?** + _High betweenness centrality (0.015) - this node is a cross-community bridge._ - **What connects `ALLOWED_ROLES`, `Pricing`, `TenantInsurance` to the rest of the system?** - _3564 weakly-connected nodes found - possible documentation gaps or missing edges._ + _3640 weakly-connected nodes found - possible documentation gaps or missing edges._ - **Should `Community 0` be split into smaller, more focused modules?** - _Cohesion score 0.047107014848950336 - nodes in this community are weakly interconnected._ + _Cohesion score 0.05012531328320802 - nodes in this community are weakly interconnected._ - **Should `Community 1` be split into smaller, more focused modules?** _Cohesion score 0.028985507246376812 - nodes in this community are weakly interconnected._ - **Should `Community 2` be split into smaller, more focused modules?** - _Cohesion score 0.07317073170731707 - nodes in this community are weakly interconnected._ \ No newline at end of file + _Cohesion score 0.06280193236714976 - nodes in this community are weakly interconnected._ \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d.json b/graphify-out/cache/ast/v0.8.44/0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d.json new file mode 100644 index 00000000..9c0a5ee4 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_qa_full_system_audit_report_md", "label": "full-system-audit-report.md", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L1"}, {"id": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "label": "\u06af\u0632\u0627\u0631\u0634 \u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 QA \u2014 ClinicPro (Backend Symfony + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L1"}, {"id": "qa_full_system_audit_report_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc", "label": "\u062e\u0644\u0627\u0635\u0647\u0654 \u0627\u062c\u0631\u0627\u06cc\u06cc", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L6"}, {"id": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "label": "\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L23"}, {"id": "qa_full_system_audit_report_f1_phpstan_\u0645\u0642\u0627\u06cc\u0633\u0647_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631\u0633\u062a_\u062f\u0631_\u0645\u062d\u0627\u0633\u0628\u0647_estimated_sms_\u0631\u0641\u0639_\u0634\u062f", "label": "[F1] phpstan: \u0645\u0642\u0627\u06cc\u0633\u0647\u0654 \u0647\u0645\u06cc\u0634\u0647\u200c\u062f\u0631\u0633\u062a \u062f\u0631 \u0645\u062d\u0627\u0633\u0628\u0647\u0654 estimated SMS \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L25"}, {"id": "qa_full_system_audit_report_f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_phpunit_\u0628\u0647_api_\u062e\u0627\u0631\u062c\u06cc_kavenegar_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0645\u06cc_\u0632\u0646\u0646\u062f", "label": "[F2] \u062a\u0633\u062a\u200c\u0647\u0627\u06cc PHPUnit \u0628\u0647 API \u062e\u0627\u0631\u062c\u06cc Kavenegar \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u0627\u0642\u0639\u06cc \u0645\u06cc\u200c\u0632\u0646\u0646\u062f", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L32"}, {"id": "qa_full_system_audit_report_f3_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a_seed_\u0646\u0634\u062f\u0647_\u0641\u0642\u0637_\u06a9\u0627\u0631\u0628\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0648\u062c\u0648\u062f_\u062f\u0627\u0631\u062f", "label": "[F3] \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a seed \u0646\u0634\u062f\u0647 \u2014 \u0641\u0642\u0637 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062f\u0645\u06cc\u0646 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L39"}, {"id": "qa_full_system_audit_report_f4_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_seeder_create_test_users_php_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0631\u062f", "label": "[F4] \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a seeder `create_test_users.php` \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L59"}, {"id": "qa_full_system_audit_report_f5_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0627_jwt_\u0645\u0639\u062a\u0628\u0631_\u0628\u0647_api_doc_swagger_ui_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u062f\u0627\u0631\u062f_401", "label": "[F5] \u0627\u062f\u0645\u06cc\u0646 \u0628\u0627 JWT \u0645\u0639\u062a\u0628\u0631 \u0628\u0647 `/api/doc` (Swagger UI) \u062f\u0633\u062a\u0631\u0633\u06cc \u0646\u062f\u0627\u0631\u062f (401)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L65"}, {"id": "qa_full_system_audit_report_f6_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627_\u0628\u06cc\u0646_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "label": "[F6] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u06a9\u062f\u0647\u0627\u06cc \u062e\u0637\u0627 \u0628\u06cc\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L72"}, {"id": "qa_full_system_audit_report_f7_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u06cc\u0646_\u0633\u0647_endpoint", "label": "[F7] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0646\u0627\u0645 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u06cc\u0646 \u0633\u0647 endpoint", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L86"}, {"id": "qa_full_system_audit_report_f8_\u0646\u0628\u0648\u062f_rate_limiting_\u0631\u0648\u06cc_post_api_v1_user_login_brute_force", "label": "[F8] \u0646\u0628\u0648\u062f Rate-Limiting \u0631\u0648\u06cc `POST /api/v1/user/login` (Brute-force)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L97"}, {"id": "qa_full_system_audit_report_f9_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u062f\u0631_public_endpoints_cities_provinces_\u0646\u06cc\u0627\u0632_\u0628\u0647_auth_specialties_\u0639\u0645\u0648\u0645\u06cc", "label": "[F9] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u062f\u0631 `public_endpoints`: `cities`/`provinces` \u0646\u06cc\u0627\u0632 \u0628\u0647 auth\u060c `specialties` \u0639\u0645\u0648\u0645\u06cc", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L112"}, {"id": "qa_full_system_audit_report_f10_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u06a9\u0647\u0646\u0647_\u062f\u0631_claude_md_endpoint_categorys_bundle_\u0645\u0646\u062a\u0642\u0644_\u0634\u062f\u0647", "label": "[F10] \u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u06a9\u0647\u0646\u0647 \u062f\u0631 `CLAUDE.md`: endpoint `categorys/{bundle}` \u0645\u0646\u062a\u0642\u0644 \u0634\u062f\u0647", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L125"}, {"id": "qa_full_system_audit_report_f11_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631_get_api_v1_dashboard_doctor_\u0647\u0645\u06cc\u0634\u0647_500_\u0641\u06cc\u0644\u062f_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_dql_\u0631\u0641\u0639_\u0634\u062f", "label": "[F11] \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u062f\u06a9\u062a\u0631 `GET /api/v1/dashboard/doctor` \u0647\u0645\u06cc\u0634\u0647 500 (\u0641\u06cc\u0644\u062f \u0646\u0627\u0645\u0648\u062c\u0648\u062f \u062f\u0631 DQL) \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L130"}, {"id": "qa_full_system_audit_report_\u0646\u062a\u0627\u06cc\u062c_\u0645\u062b\u0628\u062a_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", "label": "\u0646\u062a\u0627\u06cc\u062c \u0645\u062b\u0628\u062a \u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u0646\u062f)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L151"}, {"id": "qa_full_system_audit_report_\u062d\u0644_\u0634\u062f\u0647_\u062f\u0631_\u062f\u0648\u0631_\u062f\u0648\u0645_\u0642\u0628\u0644\u0627_\u0645\u0633\u062f\u0648\u062f_\u0628\u0648\u062f\u0646\u062f", "label": "\u062d\u0644\u200c\u0634\u062f\u0647 \u062f\u0631 \u062f\u0648\u0631 \u062f\u0648\u0645 (\u0642\u0628\u0644\u0627\u064b \u0645\u0633\u062f\u0648\u062f \u0628\u0648\u062f\u0646\u062f)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L166"}, {"id": "qa_full_system_audit_report_\u0647\u0646\u0648\u0632_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0646\u0647_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0644\u0627\u0645\u062a_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0645\u062d\u06cc\u0637", "label": "\u0647\u0646\u0648\u0632 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0631\u0631\u0633\u06cc (\u0646\u0647 \u062a\u0623\u06cc\u06cc\u062f \u0633\u0644\u0627\u0645\u062a \u2014 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u062f\u0647/\u0645\u062d\u06cc\u0637)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L175"}, {"id": "qa_full_system_audit_report_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_\u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f_\u062e\u0644\u0627\u0635\u0647", "label": "\u062f\u0633\u062a\u0648\u0631\u0627\u062a \u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f (\u062e\u0644\u0627\u0635\u0647)", "file_type": "document", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L191"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_qa_full_system_audit_report_md", "target": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L1", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L6", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L23", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f1_phpstan_\u0645\u0642\u0627\u06cc\u0633\u0647_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631\u0633\u062a_\u062f\u0631_\u0645\u062d\u0627\u0633\u0628\u0647_estimated_sms_\u0631\u0641\u0639_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L25", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_phpunit_\u0628\u0647_api_\u062e\u0627\u0631\u062c\u06cc_kavenegar_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0645\u06cc_\u0632\u0646\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L32", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f3_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a_seed_\u0646\u0634\u062f\u0647_\u0641\u0642\u0637_\u06a9\u0627\u0631\u0628\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0648\u062c\u0648\u062f_\u062f\u0627\u0631\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L39", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f4_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_seeder_create_test_users_php_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0631\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L59", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f5_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0627_jwt_\u0645\u0639\u062a\u0628\u0631_\u0628\u0647_api_doc_swagger_ui_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u062f\u0627\u0631\u062f_401", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L65", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f6_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627_\u0628\u06cc\u0646_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L72", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f7_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u06cc\u0646_\u0633\u0647_endpoint", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L86", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f8_\u0646\u0628\u0648\u062f_rate_limiting_\u0631\u0648\u06cc_post_api_v1_user_login_brute_force", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L97", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f9_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u062f\u0631_public_endpoints_cities_provinces_\u0646\u06cc\u0627\u0632_\u0628\u0647_auth_specialties_\u0639\u0645\u0648\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L112", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f10_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u06a9\u0647\u0646\u0647_\u062f\u0631_claude_md_endpoint_categorys_bundle_\u0645\u0646\u062a\u0642\u0644_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L125", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", "target": "qa_full_system_audit_report_f11_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631_get_api_v1_dashboard_doctor_\u0647\u0645\u06cc\u0634\u0647_500_\u0641\u06cc\u0644\u062f_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_dql_\u0631\u0641\u0639_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L130", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u0646\u062a\u0627\u06cc\u062c_\u0645\u062b\u0628\u062a_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L151", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u062d\u0644_\u0634\u062f\u0647_\u062f\u0631_\u062f\u0648\u0631_\u062f\u0648\u0645_\u0642\u0628\u0644\u0627_\u0645\u0633\u062f\u0648\u062f_\u0628\u0648\u062f\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L166", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u0647\u0646\u0648\u0632_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0646\u0647_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0644\u0627\u0645\u062a_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0645\u062d\u06cc\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L175", "weight": 1.0}, {"source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "qa_full_system_audit_report_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_\u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f_\u062e\u0644\u0627\u0635\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/qa/full-system-audit-report.md", "source_location": "L191", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d.json b/graphify-out/cache/ast/v0.8.44/05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d.json new file mode 100644 index 00000000..c020956d --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_secretary_welcome_sms_md", "label": "secretary-welcome-sms.md", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L1"}, {"id": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "label": "\u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u062e\u0648\u0634\u200c\u0622\u0645\u062f \u0647\u0646\u06af\u0627\u0645 \u062a\u0639\u0631\u06cc\u0641 \u0645\u0646\u0634\u06cc \u062c\u062f\u06cc\u062f", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L1"}, {"id": "prompt_secretary_welcome_sms_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L3"}, {"id": "prompt_secretary_welcome_sms_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L7"}, {"id": "prompt_secretary_welcome_sms_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L13"}, {"id": "prompt_secretary_welcome_sms_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L17"}, {"id": "prompt_secretary_welcome_sms_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L29"}, {"id": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L71"}, {"id": "prompt_secretary_welcome_sms_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u06af_\u062c\u062f\u06cc\u062f_\u062f\u0631_smslog", "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u06af \u062c\u062f\u06cc\u062f \u062f\u0631 `SmsLog`", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L73"}, {"id": "prompt_secretary_welcome_sms_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_template_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062f\u0631_smsmessagetemplate_defaults", "label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 template \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062f\u0631 `SmsMessageTemplate::DEFAULTS`", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L83"}, {"id": "prompt_secretary_welcome_sms_\u06f3_\u062a\u0632\u0631\u06cc\u0642_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_sms_\u062f\u0631_\u06a9\u0646\u062a\u0631\u0644\u0631", "label": "\u06f3. \u062a\u0632\u0631\u06cc\u0642 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627\u06cc SMS \u062f\u0631 \u06a9\u0646\u062a\u0631\u0644\u0631", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L100"}, {"id": "prompt_secretary_welcome_sms_\u06f4_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0639\u062f_\u0627\u0632_\u0633\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0645\u0646\u0634\u06cc", "label": "\u06f4. \u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0639\u062f \u0627\u0632 \u0633\u0627\u062e\u062a \u0645\u0648\u0641\u0642 \u0645\u0646\u0634\u06cc", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L112"}, {"id": "prompt_secretary_welcome_sms_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L132"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_secretary_welcome_sms_md", "target": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L13", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L29", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L71", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_secretary_welcome_sms_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u06af_\u062c\u062f\u06cc\u062f_\u062f\u0631_smslog", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L73", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_secretary_welcome_sms_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_template_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062f\u0631_smsmessagetemplate_defaults", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L83", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_secretary_welcome_sms_\u06f3_\u062a\u0632\u0631\u06cc\u0642_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_sms_\u062f\u0631_\u06a9\u0646\u062a\u0631\u0644\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L100", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_secretary_welcome_sms_\u06f4_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0639\u062f_\u0627\u0632_\u0633\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0645\u0646\u0634\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L112", "weight": 1.0}, {"source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", "target": "prompt_secretary_welcome_sms_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/secretary-welcome-sms.md", "source_location": "L132", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/227d1effa16cd5595068babf19b0174e3931c7bb0396c50a4aed29998f059e41.json b/graphify-out/cache/ast/v0.8.44/227d1effa16cd5595068babf19b0174e3931c7bb0396c50a4aed29998f059e41.json new file mode 100644 index 00000000..46f6a80b --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/227d1effa16cd5595068babf19b0174e3931c7bb0396c50a4aed29998f059e41.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_location_md", "label": "location.md", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L1"}, {"id": "api_location_location_api_province_city", "label": "Location API (Province & City)", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L1"}, {"id": "api_location_get_api_v1_provinces", "label": "GET `/api/v1/provinces`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L7"}, {"id": "api_location_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L13"}, {"id": "api_location_get_api_v1_cities", "label": "GET `/api/v1/cities`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L26"}, {"id": "api_location_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L32"}, {"id": "api_location_response_200_37", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L37"}, {"id": "api_location_get_api_v1_admin_provinces", "label": "GET `/api/v1/admin/provinces`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L50"}, {"id": "api_location_query_parameters_56", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L56"}, {"id": "api_location_response_200_63", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L63"}, {"id": "api_location_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L72"}, {"id": "api_location_get_api_v1_admin_cities", "label": "GET `/api/v1/admin/cities`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L80"}, {"id": "api_location_query_parameters_86", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L86"}, {"id": "api_location_response_200_94", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L94"}, {"id": "api_location_post_api_v1_admin_province", "label": "POST `/api/v1/admin/province`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L99"}, {"id": "api_location_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L105"}, {"id": "api_location_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L120"}, {"id": "api_location_errors_123", "label": "Errors", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L123"}, {"id": "api_location_patch_api_v1_admin_province_id", "label": "PATCH `/api/v1/admin/province/{id}`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L132"}, {"id": "api_location_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L138"}, {"id": "api_location_response_200_145", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L145"}, {"id": "api_location_errors_148", "label": "Errors", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L148"}, {"id": "api_location_delete_api_v1_admin_province_id", "label": "DELETE `/api/v1/admin/province/{id}`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L157"}, {"id": "api_location_response_200_163", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L163"}, {"id": "api_location_post_api_v1_admin_city", "label": "POST `/api/v1/admin/city`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L170"}, {"id": "api_location_request_body_application_json_176", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L176"}, {"id": "api_location_response_201_193", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L193"}, {"id": "api_location_errors_196", "label": "Errors", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L196"}, {"id": "api_location_patch_api_v1_admin_city_id", "label": "PATCH `/api/v1/admin/city/{id}`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L205"}, {"id": "api_location_response_200_213", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L213"}, {"id": "api_location_delete_api_v1_admin_city_id", "label": "DELETE `/api/v1/admin/city/{id}`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L218"}, {"id": "api_location_response_200_224", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L224"}, {"id": "api_location_get_api_v1_categorys_bundle_legacy", "label": "GET `/api/v1/categorys/{bundle}` *(Legacy)*", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L231"}, {"id": "api_location_path_parameters_237", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L237"}, {"id": "api_location_bulk_import_export", "label": "Bulk import / export", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L253"}, {"id": "api_location_sorting_by_id", "label": "Sorting by id", "file_type": "document", "source_file": "docs/api/location.md", "source_location": "L259"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_location_md", "target": "api_location_location_api_province_city", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L1", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_get_api_v1_provinces", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L7", "weight": 1.0}, {"source": "api_location_get_api_v1_provinces", "target": "api_location_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L13", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_get_api_v1_cities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L26", "weight": 1.0}, {"source": "api_location_get_api_v1_cities", "target": "api_location_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L32", "weight": 1.0}, {"source": "api_location_get_api_v1_cities", "target": "api_location_response_200_37", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L37", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_get_api_v1_admin_provinces", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L50", "weight": 1.0}, {"source": "api_location_get_api_v1_admin_provinces", "target": "api_location_query_parameters_56", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L56", "weight": 1.0}, {"source": "api_location_get_api_v1_admin_provinces", "target": "api_location_response_200_63", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L63", "weight": 1.0}, {"source": "api_location_get_api_v1_admin_provinces", "target": "api_location_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L72", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_get_api_v1_admin_cities", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L80", "weight": 1.0}, {"source": "api_location_get_api_v1_admin_cities", "target": "api_location_query_parameters_86", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L86", "weight": 1.0}, {"source": "api_location_get_api_v1_admin_cities", "target": "api_location_response_200_94", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L94", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_post_api_v1_admin_province", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L99", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_province", "target": "api_location_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L105", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_province", "target": "api_location_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L120", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_province", "target": "api_location_errors_123", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L123", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_patch_api_v1_admin_province_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L132", "weight": 1.0}, {"source": "api_location_patch_api_v1_admin_province_id", "target": "api_location_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L138", "weight": 1.0}, {"source": "api_location_patch_api_v1_admin_province_id", "target": "api_location_response_200_145", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L145", "weight": 1.0}, {"source": "api_location_patch_api_v1_admin_province_id", "target": "api_location_errors_148", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L148", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_delete_api_v1_admin_province_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L157", "weight": 1.0}, {"source": "api_location_delete_api_v1_admin_province_id", "target": "api_location_response_200_163", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L163", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_post_api_v1_admin_city", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L170", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_city", "target": "api_location_request_body_application_json_176", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L176", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_city", "target": "api_location_response_201_193", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L193", "weight": 1.0}, {"source": "api_location_post_api_v1_admin_city", "target": "api_location_errors_196", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L196", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_patch_api_v1_admin_city_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L205", "weight": 1.0}, {"source": "api_location_patch_api_v1_admin_city_id", "target": "api_location_response_200_213", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L213", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_delete_api_v1_admin_city_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L218", "weight": 1.0}, {"source": "api_location_delete_api_v1_admin_city_id", "target": "api_location_response_200_224", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L224", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_get_api_v1_categorys_bundle_legacy", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L231", "weight": 1.0}, {"source": "api_location_get_api_v1_categorys_bundle_legacy", "target": "api_location_path_parameters_237", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L237", "weight": 1.0}, {"source": "api_location_location_api_province_city", "target": "api_location_bulk_import_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L253", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_location_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_category_import_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L256", "weight": 1.0}, {"source": "api_location_bulk_import_export", "target": "api_location_sorting_by_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/location.md", "source_location": "L259", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499.json b/graphify-out/cache/ast/v0.8.44/22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499.json new file mode 100644 index 00000000..ee1cbc0a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "label": "SecretaryController.php", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L1"}, {"id": "controller_secretarycontroller_secretarycontroller", "label": "SecretaryController", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L25"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_secretarycontroller_secretarycontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L29"}, {"id": "controller_secretarycontroller_secretarycontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41"}, {"id": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "label": ".sendWelcomeSms()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L125"}, {"id": "controller_secretarycontroller_secretarycontroller_show", "label": ".show()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L142"}, {"id": "controller_secretarycontroller_secretarycontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L157"}, {"id": "controller_secretarycontroller_secretarycontroller_deactivate", "label": ".deactivate()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L184"}, {"id": "controller_secretarycontroller_secretarycontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L203"}, {"id": "controller_secretarycontroller_secretarycontroller_listbyclinic", "label": ".listByClinic()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L225"}, {"id": "controller_secretarycontroller_secretarycontroller_canmanage", "label": ".canManage()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L246"}, {"id": "doctorsecretary", "label": "DoctorSecretary", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L246"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "userrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "doctorsecretary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "doctorsecretaryrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "smslog", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "smsservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "smstextresolver", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "subscriptionservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "userpasswordhasherinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_secretary_controller_secretarycontroller_php", "target": "controller_secretarycontroller_secretarycontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L25", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L27", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L29", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_create", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L41", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L125", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_show", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L142", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_show", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L142", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_show", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L142", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L157", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L157", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_update", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L157", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L157", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_deactivate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L184", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_deactivate", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L184", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_deactivate", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L184", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L203", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_list", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L203", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L203", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_listbyclinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L225", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_listbyclinic", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L225", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_listbyclinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L225", "weight": 1.0, "context": "return_type"}, {"source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_canmanage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L246", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_canmanage", "target": "doctorsecretary", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L246", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_canmanage", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L246", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_secretarycontroller_secretarycontroller_create", "target": "doctorsecretary", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L71", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_create", "target": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L119", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_show", "target": "controller_secretarycontroller_secretarycontroller_canmanage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L150", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_update", "target": "controller_secretarycontroller_secretarycontroller_canmanage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L165", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_deactivate", "target": "controller_secretarycontroller_secretarycontroller_canmanage", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L192", "weight": 1.0}, {"source": "controller_secretarycontroller_secretarycontroller_canmanage", "target": "doctorsecretary", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Secretary/Controller/SecretaryController.php", "source_location": "L252", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L45", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L48", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L48", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L49", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L52", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L60", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "isDoctorInClinic", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L61", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L64", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L67", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getSecretaryLimit", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "countActiveByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "findByMobile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L84", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "hashPassword", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L85", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "setPasswordHash", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L86", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L89", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "mergePermissions", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L114", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L117", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_create", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L128", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "getRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "rtrim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L131", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "resolve", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L133", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", "callee": "dispatchAsync", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L139", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_show", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_show", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L147", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_show", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_show", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_show", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L166", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L171", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "setActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "mergePermissions", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L176", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L179", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_update", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L189", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L193", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "setActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L197", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_deactivate", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L208", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L216", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L217", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "findByDoctorScope", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L218", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_list", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L234", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L237", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L238", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "findByClinic", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L239", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_listbyclinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L242", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L248", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getOwnerType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L252", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getOwnerType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L257", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L259", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L262", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getClinic", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L263", "receiver": null}, {"caller_nid": "controller_secretarycontroller_secretarycontroller_canmanage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php", "source_location": "L263", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f.json b/graphify-out/cache/ast/v0.8.44/2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f.json new file mode 100644 index 00000000..88a5466d --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_provider_kavehnegarprovider_php", "label": "KavehNegarProvider.php", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L1"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider", "label": "KavehNegarProvider", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L8"}, {"id": "smsproviderinterface", "label": "SmsProviderInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L12"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_key", "label": ".key()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L20"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_sender", "label": ".sender()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L21"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_getname", "label": ".getName()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L23"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_send", "label": ".send()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L25"}, {"id": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "label": ".sendTemplate()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L46"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_provider_kavehnegarprovider_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_provider_kavehnegarprovider_php", "target": "httpclientinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_provider_kavehnegarprovider_php", "target": "provider_kavehnegarprovider_kavehnegarprovider", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L8", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "smsproviderinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L8", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L12", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_key", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L20", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_sender", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L21", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_getname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L23", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_send", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L25", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider", "target": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L46", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider_send", "target": "provider_kavehnegarprovider_kavehnegarprovider_key", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L29", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider_send", "target": "provider_kavehnegarprovider_kavehnegarprovider_sender", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L33", "weight": 1.0}, {"source": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "target": "provider_kavehnegarprovider_kavehnegarprovider_key", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Provider/KavehNegarProvider.php", "source_location": "L54", "weight": 1.0}], "raw_calls": [{"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L28", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "http_build_query", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L30", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L38", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L41", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L41", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L41", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L41", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_send", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L41", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L50", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L53", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "http_build_query", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L55", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L59", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L62", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L62", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L62", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L62", "receiver": null}, {"caller_nid": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php", "source_location": "L62", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b.json b/graphify-out/cache/ast/v0.8.44/4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b.json new file mode 100644 index 00000000..ed8ad58a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_tag_md", "label": "tag.md", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L1"}, {"id": "api_tag_tag_api", "label": "Tag API", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L1"}, {"id": "api_tag_get_api_v1_tags", "label": "GET `/api/v1/tags`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L9"}, {"id": "api_tag_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L15"}, {"id": "api_tag_get_api_v1_admin_tags", "label": "GET `/api/v1/admin/tags`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L28"}, {"id": "api_tag_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L34"}, {"id": "api_tag_response_200_41", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L41"}, {"id": "api_tag_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L50"}, {"id": "api_tag_post_api_v1_admin_tag", "label": "POST `/api/v1/admin/tag`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L58"}, {"id": "api_tag_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L64"}, {"id": "api_tag_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L79"}, {"id": "api_tag_errors_82", "label": "Errors", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L82"}, {"id": "api_tag_patch_api_v1_admin_tag_id", "label": "PATCH `/api/v1/admin/tag/{id}`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L91"}, {"id": "api_tag_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L97"}, {"id": "api_tag_response_200_104", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L104"}, {"id": "api_tag_errors_107", "label": "Errors", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L107"}, {"id": "api_tag_delete_api_v1_admin_tag_id", "label": "DELETE `/api/v1/admin/tag/{id}`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L116"}, {"id": "api_tag_response_200_122", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L122"}, {"id": "api_tag_errors_127", "label": "Errors", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L127"}, {"id": "api_tag_bulk_import_export", "label": "Bulk import / export", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L136"}, {"id": "api_tag_sorting_by_id", "label": "Sorting by id", "file_type": "document", "source_file": "docs/api/tag.md", "source_location": "L142"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_tag_md", "target": "api_tag_tag_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L1", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_get_api_v1_tags", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L9", "weight": 1.0}, {"source": "api_tag_get_api_v1_tags", "target": "api_tag_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L15", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_get_api_v1_admin_tags", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L28", "weight": 1.0}, {"source": "api_tag_get_api_v1_admin_tags", "target": "api_tag_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L34", "weight": 1.0}, {"source": "api_tag_get_api_v1_admin_tags", "target": "api_tag_response_200_41", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L41", "weight": 1.0}, {"source": "api_tag_get_api_v1_admin_tags", "target": "api_tag_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L50", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_post_api_v1_admin_tag", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L58", "weight": 1.0}, {"source": "api_tag_post_api_v1_admin_tag", "target": "api_tag_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L64", "weight": 1.0}, {"source": "api_tag_post_api_v1_admin_tag", "target": "api_tag_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L79", "weight": 1.0}, {"source": "api_tag_post_api_v1_admin_tag", "target": "api_tag_errors_82", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L82", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_patch_api_v1_admin_tag_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L91", "weight": 1.0}, {"source": "api_tag_patch_api_v1_admin_tag_id", "target": "api_tag_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L97", "weight": 1.0}, {"source": "api_tag_patch_api_v1_admin_tag_id", "target": "api_tag_response_200_104", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L104", "weight": 1.0}, {"source": "api_tag_patch_api_v1_admin_tag_id", "target": "api_tag_errors_107", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L107", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_delete_api_v1_admin_tag_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L116", "weight": 1.0}, {"source": "api_tag_delete_api_v1_admin_tag_id", "target": "api_tag_response_200_122", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L122", "weight": 1.0}, {"source": "api_tag_delete_api_v1_admin_tag_id", "target": "api_tag_errors_127", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L127", "weight": 1.0}, {"source": "api_tag_tag_api", "target": "api_tag_bulk_import_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L136", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_tag_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_category_import_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L139", "weight": 1.0}, {"source": "api_tag_bulk_import_export", "target": "api_tag_sorting_by_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/tag.md", "source_location": "L142", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91.json b/graphify-out/cache/ast/v0.8.44/4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91.json new file mode 100644 index 00000000..30b41cd4 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_production_fixes_cors_payment_gateways_md", "label": "production-fixes-cors-payment-gateways.md", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L1"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646: CORS + payment/config 500 + \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0648 callback \u0645\u0644\u062a", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L1"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L3"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L7"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L17"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L31"}, {"id": "prompt_production_fixes_cors_payment_gateways_cors_config_packages_nelmio_cors_yaml", "label": "CORS \u2014 `config/packages/nelmio_cors.yaml`", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L33"}, {"id": "prompt_production_fixes_cors_payment_gateways_payment_config_paymentcontroller_config_\u062e\u0637_\u06f5\u06f4\u06f6", "label": "payment/config \u2014 `PaymentController::config()` (\u062e\u0637 \u06f5\u06f4\u06f6)", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L63"}, {"id": "prompt_production_fixes_cors_payment_gateways_resolvegateway_callback_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "resolveGateway + callback (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L77"}, {"id": "prompt_production_fixes_cors_payment_gateways_mellatgateway_\u062a\u0634\u062e\u06cc\u0635_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646", "label": "MellatGateway \u2014 \u062a\u0634\u062e\u06cc\u0635 \u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L102"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0641\u0631\u0627\u0646\u062a_subscriptionpage_tsx", "label": "\u0641\u0631\u0627\u0646\u062a \u2014 `SubscriptionPage.tsx`", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L112"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L123"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u06f1_\u0631\u0641\u0639_cors_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", "label": "\u06f1. \u0631\u0641\u0639 CORS \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L125"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u06f2_\u0631\u0641\u0639_payment_config_500_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644", "label": "\u06f2. \u0631\u0641\u0639 payment/config 500 + \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L145"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u06f3_callback_\u0647\u0631_\u062f\u0631\u06af\u0627\u0647_\u0645\u0637\u0627\u0628\u0642_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_ipg_\u0645\u0644\u062a", "label": "\u06f3. Callback \u0647\u0631 \u062f\u0631\u06af\u0627\u0647 \u0645\u0637\u0627\u0628\u0642 \u0631\u0627\u0647\u0646\u0645\u0627\u06cc IPG \u0645\u0644\u062a", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L189"}, {"id": "prompt_production_fixes_cors_payment_gateways_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L203"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_production_fixes_cors_payment_gateways_md", "target": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L17", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_production_fixes_cors_payment_gateways_cors_config_packages_nelmio_cors_yaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L33", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_production_fixes_cors_payment_gateways_payment_config_paymentcontroller_config_\u062e\u0637_\u06f5\u06f4\u06f6", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L63", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_production_fixes_cors_payment_gateways_resolvegateway_callback_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L77", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_production_fixes_cors_payment_gateways_mellatgateway_\u062a\u0634\u062e\u06cc\u0635_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L102", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_production_fixes_cors_payment_gateways_\u0641\u0631\u0627\u0646\u062a_subscriptionpage_tsx", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L112", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L123", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_production_fixes_cors_payment_gateways_\u06f1_\u0631\u0641\u0639_cors_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L125", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_production_fixes_cors_payment_gateways_\u06f2_\u0631\u0641\u0639_payment_config_500_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L145", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_production_fixes_cors_payment_gateways_\u06f3_callback_\u0647\u0631_\u062f\u0631\u06af\u0627\u0647_\u0645\u0637\u0627\u0628\u0642_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_ipg_\u0645\u0644\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L189", "weight": 1.0}, {"source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", "target": "prompt_production_fixes_cors_payment_gateways_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", "source_location": "L203", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538.json b/graphify-out/cache/ast/v0.8.44/4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538.json new file mode 100644 index 00000000..a3e53f5a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "label": "DoctorServiceController.php", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L1"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller", "label": "DoctorServiceController", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L16"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L19"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L37"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L62"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_delete", "label": ".delete()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L85"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "label": ".adminList()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L98"}, {"id": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "label": ".slugify()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L130"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "doctorservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "doctorservicerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "specialtyrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctorservice_controller_doctorservicecontroller_php", "target": "controller_doctorservicecontroller_doctorservicecontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L16", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L17", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L19", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_list", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L24", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L37", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L37", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L37", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L62", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L62", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L62", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_delete", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L85", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_delete", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L85", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L98", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L98", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L98", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorservicecontroller_doctorservicecontroller", "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L130", "weight": 1.0}, {"source": "controller_doctorservicecontroller_doctorservicecontroller_create", "target": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L47", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_list", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L27", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L28", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_list", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L29", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_list", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L30", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_list", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L32", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L41", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L41", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L42", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L50", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L56", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L56", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_create", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L68", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L73", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "setSlug", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L73", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "setSpecialty", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L78", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_update", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_delete", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L89", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_delete", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_delete", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L105", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "addOrderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L124", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "callee": "mb_strtolower", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L133", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L134", "receiver": null}, {"caller_nid": "controller_doctorservicecontroller_doctorservicecontroller_slugify", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php", "source_location": "L135", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa.json b/graphify-out/cache/ast/v0.8.44/540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa.json new file mode 100644 index 00000000..1774f2c6 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_paymentgatewayinterface_php", "label": "PaymentGatewayInterface.php", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L1"}, {"id": "gateway_paymentgatewayinterface_getname", "label": "getName()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L7"}, {"id": "gateway_paymentgatewayinterface_isconfigured", "label": "isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L12"}, {"id": "gateway_paymentgatewayinterface_initiate", "label": "initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L17"}, {"id": "paymentinitresult", "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L17"}, {"id": "gateway_paymentgatewayinterface_verify", "label": "verify()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L22"}, {"id": "paymentverifyresult", "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L22"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_paymentgatewayinterface_php", "target": "gateway_paymentgatewayinterface_getname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_paymentgatewayinterface_php", "target": "gateway_paymentgatewayinterface_isconfigured", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_paymentgatewayinterface_php", "target": "gateway_paymentgatewayinterface_initiate", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L17", "weight": 1.0}, {"source": "gateway_paymentgatewayinterface_initiate", "target": "paymentinitresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L17", "weight": 1.0, "context": "return_type"}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_paymentgatewayinterface_php", "target": "gateway_paymentgatewayinterface_verify", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L22", "weight": 1.0}, {"source": "gateway_paymentgatewayinterface_verify", "target": "paymentverifyresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L22", "weight": 1.0, "context": "return_type"}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce.json b/graphify-out/cache/ast/v0.8.44/5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce.json new file mode 100644 index 00000000..7d34cec2 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_sepgateway_php", "label": "SepGateway.php", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L1"}, {"id": "gateway_sepgateway_sepgateway", "label": "SepGateway", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L9"}, {"id": "paymentgatewayinterface", "label": "PaymentGatewayInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "gateway_sepgateway_sepgateway_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L14"}, {"id": "gateway_sepgateway_sepgateway_getname", "label": ".getName()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L21"}, {"id": "gateway_sepgateway_sepgateway_isconfigured", "label": ".isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L23"}, {"id": "gateway_sepgateway_sepgateway_cfg", "label": ".cfg()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L28"}, {"id": "gateway_sepgateway_sepgateway_initiate", "label": ".initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L33"}, {"id": "paymentinitresult", "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L33"}, {"id": "gateway_sepgateway_sepgateway_verify", "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L62"}, {"id": "paymentverifyresult", "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L62"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_sepgateway_php", "target": "siteconfigrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_sepgateway_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_sepgateway_php", "target": "httpclientinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_sepgateway_php", "target": "gateway_sepgateway_sepgateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L9", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "paymentgatewayinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L9", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L14", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_getname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L21", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_isconfigured", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L23", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_cfg", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L28", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_initiate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L33", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway_initiate", "target": "paymentinitresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L33", "weight": 1.0, "context": "return_type"}, {"source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_verify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L62", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway_verify", "target": "paymentverifyresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L62", "weight": 1.0, "context": "return_type"}, {"source": "gateway_sepgateway_sepgateway_isconfigured", "target": "gateway_sepgateway_sepgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L25", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway_initiate", "target": "gateway_sepgateway_sepgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L39", "weight": 1.0}, {"source": "gateway_sepgateway_sepgateway_verify", "target": "gateway_sepgateway_sepgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/SepGateway.php", "source_location": "L78", "weight": 1.0}], "raw_calls": [{"caller_nid": "gateway_sepgateway_sepgateway_cfg", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L30", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L36", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L47", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L57", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L57", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L57", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L57", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L57", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_initiate", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "strtolower", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L65", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "strtolower", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L68", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L75", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L84", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L95", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L95", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L95", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L95", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L95", "receiver": null}, {"caller_nid": "gateway_sepgateway_sepgateway_verify", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php", "source_location": "L96", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/55da5cb4db0e24559e575c24450d6fea5b277ce11744791b6db7a86988f9d703.json b/graphify-out/cache/ast/v0.8.44/55da5cb4db0e24559e575c24450d6fea5b277ce11744791b6db7a86988f9d703.json new file mode 100644 index 00000000..eb43d5dc --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/55da5cb4db0e24559e575c24450d6fea5b277ce11744791b6db7a86988f9d703.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_repository_siteconfigrepository_php", "label": "SiteConfigRepository.php", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L1"}, {"id": "repository_siteconfigrepository_siteconfigrepository", "label": "SiteConfigRepository", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L9"}, {"id": "serviceentityrepository", "label": "ServiceEntityRepository", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "repository_siteconfigrepository_siteconfigrepository_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L33"}, {"id": "managerregistry", "label": "ManagerRegistry", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L33"}, {"id": "repository_siteconfigrepository_siteconfigrepository_get", "label": ".get()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L38"}, {"id": "repository_siteconfigrepository_siteconfigrepository_getall", "label": ".getAll()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L47"}, {"id": "repository_siteconfigrepository_siteconfigrepository_set", "label": ".set()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L63"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_repository_siteconfigrepository_php", "target": "siteconfig", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_repository_siteconfigrepository_php", "target": "serviceentityrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_repository_siteconfigrepository_php", "target": "managerregistry", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_repository_siteconfigrepository_php", "target": "repository_siteconfigrepository_siteconfigrepository", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L9", "weight": 1.0}, {"source": "repository_siteconfigrepository_siteconfigrepository", "target": "serviceentityrepository", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L9", "weight": 1.0}, {"source": "repository_siteconfigrepository_siteconfigrepository", "target": "repository_siteconfigrepository_siteconfigrepository_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L33", "weight": 1.0}, {"source": "repository_siteconfigrepository_siteconfigrepository_construct", "target": "managerregistry", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L33", "weight": 1.0, "context": "parameter_type"}, {"source": "repository_siteconfigrepository_siteconfigrepository", "target": "repository_siteconfigrepository_siteconfigrepository_get", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L38", "weight": 1.0}, {"source": "repository_siteconfigrepository_siteconfigrepository", "target": "repository_siteconfigrepository_siteconfigrepository_getall", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L47", "weight": 1.0}, {"source": "repository_siteconfigrepository_siteconfigrepository", "target": "repository_siteconfigrepository_siteconfigrepository_set", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Repository/SiteConfigRepository.php", "source_location": "L63", "weight": 1.0}], "raw_calls": [{"caller_nid": "repository_siteconfigrepository_siteconfigrepository_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L35", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_get", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L40", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_get", "callee": "getValue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L42", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_getall", "callee": "findAll", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L49", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_getall", "callee": "getKey", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L52", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_getall", "callee": "getValue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L52", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_getall", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L56", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_set", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L65", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_set", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L68", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_set", "callee": "getEntityManager", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L68", "receiver": null}, {"caller_nid": "repository_siteconfigrepository_siteconfigrepository_set", "callee": "setValue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php", "source_location": "L70", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd.json b/graphify-out/cache/ast/v0.8.44/5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd.json new file mode 100644 index 00000000..0e09058b --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "label": "SmsWalletController.php", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L1"}, {"id": "controller_smswalletcontroller_smswalletcontroller", "label": "SmsWalletController", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L28"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_smswalletcontroller_smswalletcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L34"}, {"id": "controller_smswalletcontroller_smswalletcontroller_balance", "label": ".balance()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49"}, {"id": "controller_smswalletcontroller_smswalletcontroller_charge", "label": ".charge()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68"}, {"id": "controller_smswalletcontroller_smswalletcontroller_logs", "label": ".logs()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L120"}, {"id": "controller_smswalletcontroller_smswalletcontroller_getsettings", "label": ".getSettings()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L143"}, {"id": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "label": ".updateSettings()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L167"}, {"id": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "label": ".adminReviewList()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L197"}, {"id": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "label": ".adminApprove()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L221"}, {"id": "controller_smswalletcontroller_smswalletcontroller_adminreject", "label": ".adminReject()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L236"}, {"id": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "label": ".resolveEntityName()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L257"}, {"id": "controller_smswalletcontroller_smswalletcontroller_adminreport", "label": ".adminReport()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L268"}, {"id": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "label": ".resolveEntity()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L290"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "siteconfigrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "payment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "mellatgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "mockgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "sepgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "paymentrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "smssettings", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "smssettingsrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "smswalletrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "smswallettransactionrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "smswalletservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L24", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L25", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L26", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_controller_smswalletcontroller_php", "target": "controller_smswalletcontroller_smswalletcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L28", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L30", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L34", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_balance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_balance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_balance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L49", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_charge", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_charge", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_charge", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_charge", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L68", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_logs", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L120", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_logs", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L120", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_logs", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L120", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_logs", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L120", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_getsettings", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L143", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_getsettings", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L143", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_getsettings", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L143", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L167", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L167", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L167", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L167", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L197", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L197", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L197", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L221", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L221", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_adminreject", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L236", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreject", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L236", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreject", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L236", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L257", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_adminreport", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L268", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreport", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L268", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreport", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L268", "weight": 1.0, "context": "return_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L290", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L290", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_smswalletcontroller_smswalletcontroller_balance", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L52", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_charge", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L71", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_logs", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L123", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_getsettings", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L146", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L170", "weight": 1.0}, {"source": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "target": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Sms/Controller/SmsWalletController.php", "source_location": "L214", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_smswalletcontroller_smswalletcontroller_balance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_balance", "callee": "getBalance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L57", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_balance", "callee": "floor", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_balance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L61", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L73", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L84", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "setMetadata", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L101", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "initiate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "setGatewayToken", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L114", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_charge", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L128", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "getOrCreate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L130", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "findByWallet", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "countByWallet", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L133", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L135", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_logs", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_getsettings", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L148", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_getsettings", "callee": "findByEntity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_getsettings", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_getsettings", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_getsettings", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "findByEntity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "setReminderEnabled", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "setReminderHoursBefore", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "setPostVisitEnabled", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L185", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "submitPostVisitText", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L188", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L201", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L202", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L218", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L225", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "approvePostVisitText", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L240", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L242", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L248", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "rejectPostVisitText", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L251", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L252", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreject", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L260", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L263", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L272", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L273", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L275", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L275", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L275", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L275", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L280", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_adminreport", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L287", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L292", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L293", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L294", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L297", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L298", "receiver": null}, {"caller_nid": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php", "source_location": "L299", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501.json b/graphify-out/cache/ast/v0.8.44/5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501.json new file mode 100644 index 00000000..11cdcbfa --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mockgateway_php", "label": "MockGateway.php", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L1"}, {"id": "gateway_mockgateway_mockgateway", "label": "MockGateway", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L5"}, {"id": "paymentgatewayinterface", "label": "PaymentGatewayInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "gateway_mockgateway_mockgateway_getname", "label": ".getName()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L7"}, {"id": "gateway_mockgateway_mockgateway_isconfigured", "label": ".isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L9"}, {"id": "gateway_mockgateway_mockgateway_initiate", "label": ".initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L11"}, {"id": "paymentinitresult", "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L11"}, {"id": "gateway_mockgateway_mockgateway_verify", "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L17"}, {"id": "paymentverifyresult", "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L17"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mockgateway_php", "target": "gateway_mockgateway_mockgateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L5", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway", "target": "paymentgatewayinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L5", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway", "target": "gateway_mockgateway_mockgateway_getname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L7", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway", "target": "gateway_mockgateway_mockgateway_isconfigured", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L9", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway", "target": "gateway_mockgateway_mockgateway_initiate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L11", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway_initiate", "target": "paymentinitresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L11", "weight": 1.0, "context": "return_type"}, {"source": "gateway_mockgateway_mockgateway", "target": "gateway_mockgateway_mockgateway_verify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L17", "weight": 1.0}, {"source": "gateway_mockgateway_mockgateway_verify", "target": "paymentverifyresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L17", "weight": 1.0, "context": "return_type"}], "raw_calls": []} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c.json b/graphify-out/cache/ast/v0.8.44/65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c.json new file mode 100644 index 00000000..0426068c --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_sms_md", "label": "sms.md", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L1"}, {"id": "api_sms_sms_api", "label": "SMS API", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L1"}, {"id": "api_sms_configuration", "label": "Configuration", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L7"}, {"id": "api_sms_post_api_v1_sms_send", "label": "POST `/api/v1/sms/send`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L17"}, {"id": "api_sms_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L23"}, {"id": "api_sms_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L38"}, {"id": "api_sms_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L46"}, {"id": "api_sms_post_api_v1_sms_send_template", "label": "POST `/api/v1/sms/send-template`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L55"}, {"id": "api_sms_request_body_application_json_61", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L61"}, {"id": "api_sms_response_200_81", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L81"}, {"id": "api_sms_errors_89", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L89"}, {"id": "api_sms_post_api_v1_sms_template", "label": "POST `/api/v1/sms/template`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L99"}, {"id": "api_sms_request_body_application_json_105", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L105"}, {"id": "api_sms_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L120"}, {"id": "api_sms_errors_143", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L143"}, {"id": "api_sms_get_api_v1_sms_template_uuid", "label": "GET `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L152"}, {"id": "api_sms_response_200_158", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L158"}, {"id": "api_sms_errors_161", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L161"}, {"id": "api_sms_patch_api_v1_sms_template_uuid", "label": "PATCH `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L169"}, {"id": "api_sms_request_body_application_json_175", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L175"}, {"id": "api_sms_response_200_186", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L186"}, {"id": "api_sms_errors_189", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L189"}, {"id": "api_sms_post_api_v1_sms_template_uuid_submit", "label": "POST `/api/v1/sms/template/{uuid}/submit`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L199"}, {"id": "api_sms_response_200_205", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L205"}, {"id": "api_sms_errors_208", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L208"}, {"id": "api_sms_delete_api_v1_sms_template_uuid", "label": "DELETE `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L218"}, {"id": "api_sms_response_200_224", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L224"}, {"id": "api_sms_errors_229", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L229"}, {"id": "api_sms_get_api_v1_admin_sms_templates", "label": "GET `/api/v1/admin/sms/templates`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L238"}, {"id": "api_sms_response_200_244", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L244"}, {"id": "api_sms_post_api_v1_admin_sms_template_uuid_approve", "label": "POST `/api/v1/admin/sms/template/{uuid}/approve`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L261"}, {"id": "api_sms_request_body_application_json_267", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L267"}, {"id": "api_sms_response_200_280", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L280"}, {"id": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "label": "POST `/api/v1/admin/sms/template/{uuid}/reject`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L285"}, {"id": "api_sms_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L291"}, {"id": "api_sms_response_200_302", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L302"}, {"id": "api_sms_errors_305", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L305"}, {"id": "api_sms_sms_wallet", "label": "SMS Wallet", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L312"}, {"id": "api_sms_get_api_v1_sms_wallet_balance", "label": "GET /api/v1/sms/wallet/balance", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L316"}, {"id": "api_sms_post_api_v1_sms_wallet_charge", "label": "POST /api/v1/sms/wallet/charge", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L331"}, {"id": "api_sms_get_api_v1_sms_wallet_logs", "label": "GET /api/v1/sms/wallet/logs", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L359"}, {"id": "api_sms_sms_settings", "label": "SMS Settings", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L383"}, {"id": "api_sms_get_api_v1_sms_settings", "label": "GET /api/v1/sms/settings", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L385"}, {"id": "api_sms_patch_api_v1_sms_settings", "label": "PATCH /api/v1/sms/settings", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L409"}, {"id": "api_sms_admin_endpoints", "label": "Admin Endpoints", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L428"}, {"id": "api_sms_get_api_v1_admin_sms_settings_review", "label": "GET /api/v1/admin/sms/settings/review", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L430"}, {"id": "api_sms_post_api_v1_admin_sms_settings_id_approve", "label": "POST /api/v1/admin/sms/settings/{id}/approve", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L461"}, {"id": "api_sms_post_api_v1_admin_sms_settings_id_reject", "label": "POST /api/v1/admin/sms/settings/{id}/reject", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L465"}, {"id": "api_sms_get_api_v1_admin_sms_wallet_report", "label": "GET /api/v1/admin/sms/wallet-report", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L475"}, {"id": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "label": "\u0645\u062a\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u067e\u0630\u06cc\u0631 \u067e\u06cc\u0627\u0645\u06a9\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L481"}, {"id": "api_sms_get_api_v1_admin_sms_messages", "label": "GET `/api/v1/admin/sms/messages`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L491"}, {"id": "api_sms_response_200_497", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L497"}, {"id": "api_sms_patch_api_v1_admin_sms_messages_tag", "label": "PATCH `/api/v1/admin/sms/messages/{tag}`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L515"}, {"id": "api_sms_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L521"}, {"id": "api_sms_request_body_526", "label": "Request Body", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L526"}, {"id": "api_sms_response_200_534", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L534"}, {"id": "api_sms_errors_539", "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", "source_location": "L539"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_sms_md", "target": "api_sms_sms_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L1", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_configuration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L7", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_sms_send", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L17", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send", "target": "api_sms_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L23", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send", "target": "api_sms_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L38", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send", "target": "api_sms_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L46", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_sms_send_template", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L55", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send_template", "target": "api_sms_request_body_application_json_61", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L61", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send_template", "target": "api_sms_response_200_81", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L81", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_send_template", "target": "api_sms_errors_89", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L89", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_sms_template", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L99", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_template", "target": "api_sms_request_body_application_json_105", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L105", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_template", "target": "api_sms_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L120", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_template", "target": "api_sms_errors_143", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L143", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_get_api_v1_sms_template_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L152", "weight": 1.0}, {"source": "api_sms_get_api_v1_sms_template_uuid", "target": "api_sms_response_200_158", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L158", "weight": 1.0}, {"source": "api_sms_get_api_v1_sms_template_uuid", "target": "api_sms_errors_161", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L161", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_patch_api_v1_sms_template_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L169", "weight": 1.0}, {"source": "api_sms_patch_api_v1_sms_template_uuid", "target": "api_sms_request_body_application_json_175", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L175", "weight": 1.0}, {"source": "api_sms_patch_api_v1_sms_template_uuid", "target": "api_sms_response_200_186", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L186", "weight": 1.0}, {"source": "api_sms_patch_api_v1_sms_template_uuid", "target": "api_sms_errors_189", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L189", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_sms_template_uuid_submit", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L199", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_template_uuid_submit", "target": "api_sms_response_200_205", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L205", "weight": 1.0}, {"source": "api_sms_post_api_v1_sms_template_uuid_submit", "target": "api_sms_errors_208", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L208", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_delete_api_v1_sms_template_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L218", "weight": 1.0}, {"source": "api_sms_delete_api_v1_sms_template_uuid", "target": "api_sms_response_200_224", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L224", "weight": 1.0}, {"source": "api_sms_delete_api_v1_sms_template_uuid", "target": "api_sms_errors_229", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L229", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_get_api_v1_admin_sms_templates", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L238", "weight": 1.0}, {"source": "api_sms_get_api_v1_admin_sms_templates", "target": "api_sms_response_200_244", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L244", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_admin_sms_template_uuid_approve", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L261", "weight": 1.0}, {"source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", "target": "api_sms_request_body_application_json_267", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L267", "weight": 1.0}, {"source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", "target": "api_sms_response_200_280", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L280", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L285", "weight": 1.0}, {"source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "target": "api_sms_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L291", "weight": 1.0}, {"source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "target": "api_sms_response_200_302", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L302", "weight": 1.0}, {"source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "target": "api_sms_errors_305", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L305", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_sms_wallet", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L312", "weight": 1.0}, {"source": "api_sms_sms_wallet", "target": "api_sms_get_api_v1_sms_wallet_balance", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L316", "weight": 1.0}, {"source": "api_sms_sms_wallet", "target": "api_sms_post_api_v1_sms_wallet_charge", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L331", "weight": 1.0}, {"source": "api_sms_sms_wallet", "target": "api_sms_get_api_v1_sms_wallet_logs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L359", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_sms_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L383", "weight": 1.0}, {"source": "api_sms_sms_settings", "target": "api_sms_get_api_v1_sms_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L385", "weight": 1.0}, {"source": "api_sms_sms_settings", "target": "api_sms_patch_api_v1_sms_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L409", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_admin_endpoints", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L428", "weight": 1.0}, {"source": "api_sms_admin_endpoints", "target": "api_sms_get_api_v1_admin_sms_settings_review", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L430", "weight": 1.0}, {"source": "api_sms_admin_endpoints", "target": "api_sms_post_api_v1_admin_sms_settings_id_approve", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L461", "weight": 1.0}, {"source": "api_sms_admin_endpoints", "target": "api_sms_post_api_v1_admin_sms_settings_id_reject", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L465", "weight": 1.0}, {"source": "api_sms_admin_endpoints", "target": "api_sms_get_api_v1_admin_sms_wallet_report", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L475", "weight": 1.0}, {"source": "api_sms_sms_api", "target": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L481", "weight": 1.0}, {"source": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "target": "api_sms_get_api_v1_admin_sms_messages", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L491", "weight": 1.0}, {"source": "api_sms_get_api_v1_admin_sms_messages", "target": "api_sms_response_200_497", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L497", "weight": 1.0}, {"source": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "target": "api_sms_patch_api_v1_admin_sms_messages_tag", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L515", "weight": 1.0}, {"source": "api_sms_patch_api_v1_admin_sms_messages_tag", "target": "api_sms_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L521", "weight": 1.0}, {"source": "api_sms_patch_api_v1_admin_sms_messages_tag", "target": "api_sms_request_body_526", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L526", "weight": 1.0}, {"source": "api_sms_patch_api_v1_admin_sms_messages_tag", "target": "api_sms_response_200_534", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L534", "weight": 1.0}, {"source": "api_sms_patch_api_v1_admin_sms_messages_tag", "target": "api_sms_errors_539", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L539", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2.json b/graphify-out/cache/ast/v0.8.44/777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2.json new file mode 100644 index 00000000..c32422de --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_insurance_md", "label": "insurance.md", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L1"}, {"id": "api_insurance_insurance_api", "label": "Insurance API", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L1"}, {"id": "api_insurance_get_api_v1_insurances", "label": "GET `/api/v1/insurances`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L11"}, {"id": "api_insurance_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L17"}, {"id": "api_insurance_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L22"}, {"id": "api_insurance_get_api_v1_admin_insurances", "label": "GET `/api/v1/admin/insurances`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L47"}, {"id": "api_insurance_query_parameters_53", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L53"}, {"id": "api_insurance_response_200_61", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L61"}, {"id": "api_insurance_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L70"}, {"id": "api_insurance_post_api_v1_admin_insurance", "label": "POST `/api/v1/admin/insurance`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L78"}, {"id": "api_insurance_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L84"}, {"id": "api_insurance_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L101"}, {"id": "api_insurance_errors_104", "label": "Errors", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L104"}, {"id": "api_insurance_patch_api_v1_admin_insurance_id", "label": "PATCH `/api/v1/admin/insurance/{id}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L113"}, {"id": "api_insurance_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L119"}, {"id": "api_insurance_response_200_126", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L126"}, {"id": "api_insurance_errors_129", "label": "Errors", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L129"}, {"id": "api_insurance_delete_api_v1_admin_insurance_id", "label": "DELETE `/api/v1/admin/insurance/{id}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L138"}, {"id": "api_insurance_response_200_144", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L144"}, {"id": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", "label": "POST `/api/v1/admin/insurance/{id}/upload-logo`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L151"}, {"id": "api_insurance_request", "label": "Request", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L157"}, {"id": "api_insurance_response_200_164", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L164"}, {"id": "api_insurance_post_api_v1_insurance", "label": "POST `/api/v1/insurance/`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L180"}, {"id": "api_insurance_request_body_application_json_186", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L186"}, {"id": "api_insurance_response_201_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L201"}, {"id": "api_insurance_errors_214", "label": "Errors", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L214"}, {"id": "api_insurance_get_api_v1_insurance_id", "label": "GET `/api/v1/insurance/{id}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L224"}, {"id": "api_insurance_response_200_230", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L230"}, {"id": "api_insurance_patch_api_v1_insurance_id", "label": "PATCH `/api/v1/insurance/{id}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L235"}, {"id": "api_insurance_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L241"}, {"id": "api_insurance_response_200_246", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L246"}, {"id": "api_insurance_errors_249", "label": "Errors", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L249"}, {"id": "api_insurance_delete_api_v1_insurance_id", "label": "DELETE `/api/v1/insurance/{id}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L258"}, {"id": "api_insurance_response_200_264", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L264"}, {"id": "api_insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647", "label": "EntityInsurancePricing \u2014 \u0642\u06cc\u0645\u062a\u200c\u06af\u0630\u0627\u0631\u06cc \u0648\u06cc\u0632\u06cc\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u0628\u06cc\u0645\u0647", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L271"}, {"id": "api_insurance_get_api_v1_insurance_pricing", "label": "GET `/api/v1/insurance-pricing`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L281"}, {"id": "api_insurance_response_200_287", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L287"}, {"id": "api_insurance_\u062e\u0637\u0627\u0647\u0627", "label": "\u062e\u0637\u0627\u0647\u0627", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L315"}, {"id": "api_insurance_put_api_v1_insurance_pricing", "label": "PUT `/api/v1/insurance-pricing`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L320"}, {"id": "api_insurance_request_body_326", "label": "Request Body", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L326"}, {"id": "api_insurance_response_200_343", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L343"}, {"id": "api_insurance_\u062e\u0637\u0627\u0647\u0627_346", "label": "\u062e\u0637\u0627\u0647\u0627", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L346"}, {"id": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "label": "TenantInsurance \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc \u0628\u06cc\u0645\u0647\u200c\u06cc tenant (\u0641\u0627\u0632 \u06f1 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628)", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L351"}, {"id": "api_insurance_get_api_v1_billing_tenant_insurances", "label": "GET `/api/v1/billing/tenant-insurances`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L355"}, {"id": "api_insurance_post_api_v1_billing_tenant_insurances", "label": "POST `/api/v1/billing/tenant-insurances`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L383"}, {"id": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid", "label": "PATCH `/api/v1/billing/tenant-insurances/{uuid}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L397"}, {"id": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid", "label": "DELETE `/api/v1/billing/tenant-insurances/{uuid}`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L400"}, {"id": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "label": "TenantServiceCoverage \u2014 \u067e\u0648\u0634\u0634 \u062e\u062f\u0645\u062a \u062a\u062d\u062a \u06cc\u06a9 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f2)", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L411"}, {"id": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "GET `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L415"}, {"id": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", "label": "PUT `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L440"}, {"id": "api_insurance_bulk_import_export", "label": "Bulk import / export", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L462"}, {"id": "api_insurance_sorting_by_id", "label": "Sorting by id", "file_type": "document", "source_file": "docs/api/insurance.md", "source_location": "L468"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_insurance_md", "target": "api_insurance_insurance_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L1", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_get_api_v1_insurances", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L11", "weight": 1.0}, {"source": "api_insurance_get_api_v1_insurances", "target": "api_insurance_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L17", "weight": 1.0}, {"source": "api_insurance_get_api_v1_insurances", "target": "api_insurance_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L22", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_get_api_v1_admin_insurances", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L47", "weight": 1.0}, {"source": "api_insurance_get_api_v1_admin_insurances", "target": "api_insurance_query_parameters_53", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L53", "weight": 1.0}, {"source": "api_insurance_get_api_v1_admin_insurances", "target": "api_insurance_response_200_61", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L61", "weight": 1.0}, {"source": "api_insurance_get_api_v1_admin_insurances", "target": "api_insurance_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L70", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_post_api_v1_admin_insurance", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L78", "weight": 1.0}, {"source": "api_insurance_post_api_v1_admin_insurance", "target": "api_insurance_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L84", "weight": 1.0}, {"source": "api_insurance_post_api_v1_admin_insurance", "target": "api_insurance_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L101", "weight": 1.0}, {"source": "api_insurance_post_api_v1_admin_insurance", "target": "api_insurance_errors_104", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L104", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_patch_api_v1_admin_insurance_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L113", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_admin_insurance_id", "target": "api_insurance_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L119", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_admin_insurance_id", "target": "api_insurance_response_200_126", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L126", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_admin_insurance_id", "target": "api_insurance_errors_129", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L129", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_delete_api_v1_admin_insurance_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L138", "weight": 1.0}, {"source": "api_insurance_delete_api_v1_admin_insurance_id", "target": "api_insurance_response_200_144", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L144", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L151", "weight": 1.0}, {"source": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", "target": "api_insurance_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L157", "weight": 1.0}, {"source": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", "target": "api_insurance_response_200_164", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L164", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_post_api_v1_insurance", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L180", "weight": 1.0}, {"source": "api_insurance_post_api_v1_insurance", "target": "api_insurance_request_body_application_json_186", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L186", "weight": 1.0}, {"source": "api_insurance_post_api_v1_insurance", "target": "api_insurance_response_201_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L201", "weight": 1.0}, {"source": "api_insurance_post_api_v1_insurance", "target": "api_insurance_errors_214", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L214", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_get_api_v1_insurance_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L224", "weight": 1.0}, {"source": "api_insurance_get_api_v1_insurance_id", "target": "api_insurance_response_200_230", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L230", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_patch_api_v1_insurance_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L235", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_insurance_id", "target": "api_insurance_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L241", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_insurance_id", "target": "api_insurance_response_200_246", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L246", "weight": 1.0}, {"source": "api_insurance_patch_api_v1_insurance_id", "target": "api_insurance_errors_249", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L249", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_delete_api_v1_insurance_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L258", "weight": 1.0}, {"source": "api_insurance_delete_api_v1_insurance_id", "target": "api_insurance_response_200_264", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L264", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_entityinsurancepricing_\u0642\u06cc\u0645\u062a_\u06af\u0630\u0627\u0631\u06cc_\u0648\u06cc\u0632\u06cc\u062a_\u0628\u0631_\u0627\u0633\u0627\u0633_\u0628\u06cc\u0645\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L271", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_get_api_v1_insurance_pricing", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L281", "weight": 1.0}, {"source": "api_insurance_get_api_v1_insurance_pricing", "target": "api_insurance_response_200_287", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L287", "weight": 1.0}, {"source": "api_insurance_get_api_v1_insurance_pricing", "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L315", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_put_api_v1_insurance_pricing", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L320", "weight": 1.0}, {"source": "api_insurance_put_api_v1_insurance_pricing", "target": "api_insurance_request_body_326", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L326", "weight": 1.0}, {"source": "api_insurance_put_api_v1_insurance_pricing", "target": "api_insurance_response_200_343", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L343", "weight": 1.0}, {"source": "api_insurance_put_api_v1_insurance_pricing", "target": "api_insurance_\u062e\u0637\u0627\u0647\u0627_346", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L346", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L351", "weight": 1.0}, {"source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "target": "api_insurance_get_api_v1_billing_tenant_insurances", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L355", "weight": 1.0}, {"source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "target": "api_insurance_post_api_v1_billing_tenant_insurances", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L383", "weight": 1.0}, {"source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "target": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L397", "weight": 1.0}, {"source": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", "target": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L400", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L411", "weight": 1.0}, {"source": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "target": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L415", "weight": 1.0}, {"source": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "target": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L440", "weight": 1.0}, {"source": "api_insurance_insurance_api", "target": "api_insurance_bulk_import_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L462", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_insurance_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_category_import_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L465", "weight": 1.0}, {"source": "api_insurance_bulk_import_export", "target": "api_insurance_sorting_by_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/insurance.md", "source_location": "L468", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68.json b/graphify-out/cache/ast/v0.8.44/81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68.json new file mode 100644 index 00000000..d958387e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "label": "InsuranceController.php", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L1"}, {"id": "controller_insurancecontroller_insurancecontroller", "label": "InsuranceController", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L31"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_insurancecontroller_insurancecontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L34"}, {"id": "controller_insurancecontroller_insurancecontroller_resolveentity", "label": ".resolveEntity()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L48"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L48"}, {"id": "controller_insurancecontroller_insurancecontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63"}, {"id": "controller_insurancecontroller_insurancecontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L78"}, {"id": "controller_insurancecontroller_insurancecontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L103"}, {"id": "controller_insurancecontroller_insurancecontroller_delete", "label": ".delete()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L125"}, {"id": "controller_insurancecontroller_insurancecontroller_adminlist", "label": ".adminList()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L138"}, {"id": "controller_insurancecontroller_insurancecontroller_uploadlogo", "label": ".uploadLogo()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L172"}, {"id": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "label": ".getInsurancePricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L220"}, {"id": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "label": ".saveInsurancePricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L258"}, {"id": "controller_insurancecontroller_insurancecontroller_upsertpricing", "label": ".upsertPricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L293"}, {"id": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "label": ".listTenantInsurances()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L306"}, {"id": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "label": ".activateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L332"}, {"id": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "label": ".updateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L360"}, {"id": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "label": ".deactivateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L386"}, {"id": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "label": ".listServiceCoverage()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L401"}, {"id": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "label": ".setServiceCoverage()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L432"}, {"id": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "label": ".addDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L473"}, {"id": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "label": ".showDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L513"}, {"id": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "label": ".updateDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L529"}, {"id": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "label": ".deleteDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L551"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "serviceitemrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "doctorinsurance", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "entityinsurancepricing", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "insurance", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "insurancetype", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "tenantinsurance", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "doctorinsurancerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "entityinsurancepricingrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "insurancerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "tenantinsurancerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "tenantservicecoveragerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "tenantinsuranceservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "filevalidatorservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L24", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L25", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L26", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L27", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L28", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L29", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_insurance_controller_insurancecontroller_php", "target": "controller_insurancecontroller_insurancecontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L31", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L32", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L34", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L48", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_resolveentity", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L48", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_list", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L63", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L78", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L78", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L78", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L103", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L103", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L103", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_delete", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L125", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_delete", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L125", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_adminlist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L138", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_adminlist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L138", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_adminlist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L138", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_uploadlogo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L172", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_uploadlogo", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L172", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_uploadlogo", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L172", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L220", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L220", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L220", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L258", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L258", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L258", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L258", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_upsertpricing", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L293", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L306", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L306", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L306", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L332", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L332", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L332", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L332", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L360", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L360", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L360", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L360", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L386", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L386", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L386", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L401", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L401", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L401", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L432", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L432", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L432", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L432", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L473", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L473", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L473", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L473", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L513", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L513", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L513", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L529", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L529", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L529", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L529", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller", "target": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L551", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L551", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L551", "weight": 1.0, "context": "return_type"}, {"source": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L224", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L262", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "controller_insurancecontroller_insurancecontroller_upsertpricing", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L270", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "target": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L290", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L310", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L336", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L364", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L390", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L405", "weight": 1.0}, {"source": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "target": "controller_insurancecontroller_insurancecontroller_resolveentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Insurance/Controller/InsuranceController.php", "source_location": "L436", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L50", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L52", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_resolveentity", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L56", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "InsuranceType", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L69", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_list", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L73", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L83", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "InsuranceType", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "setLogoUrl", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_create", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L112", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L112", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L114", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "InsuranceType", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "setType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "setLogoUrl", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L119", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L119", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_update", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_delete", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L131", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_delete", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L134", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_delete", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L135", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L144", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L144", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L147", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L148", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L155", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L155", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L165", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adminlist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L165", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L176", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L178", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "sys_get_temp_dir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "uniqid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "file_put_contents", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "sanitizeFilename", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "detectMimeType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L191", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L193", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "is_dir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "mkdir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "uniqid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "rename", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "setLogoUrl", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L202", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L203", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L205", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L207", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L207", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "strlen", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "file_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "unlink", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_uploadlogo", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L226", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "findByEntity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L229", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "isFreeVisit", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L234", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getPatientShareRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L235", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getInsuranceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L237", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getPatientShareRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L237", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L241", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L243", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L244", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L248", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L250", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L264", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L267", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L267", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L269", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L274", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L278", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "findOneForInsurance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L279", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L281", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L288", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "callee": "getEntityManager", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L288", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_upsertpricing", "callee": "findOneForInsurance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_upsertpricing", "callee": "setPatientShareRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L299", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_upsertpricing", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L301", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L312", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "findActiveByTenant", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L315", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L318", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L319", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L319", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L319", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L322", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L323", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "getInsuranceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L324", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "getInsuranceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L325", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L329", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L338", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L341", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L341", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L342", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L344", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "activate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L347", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L353", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L357", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L357", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L365", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L366", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L366", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L370", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L370", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L371", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "setCoveragePercent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L372", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "setFranchiseRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L375", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L377", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "setAnnualCeilingRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L378", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L381", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L383", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L383", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L391", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L392", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L392", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L393", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "deactivate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L396", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L398", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L406", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L407", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L407", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L408", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "findByContract", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L411", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L411", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getServiceItemId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "findBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L418", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L419", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L419", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L423", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L424", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "getServiceItemId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L425", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L429", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L437", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L438", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L438", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L439", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L442", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L442", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L444", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L445", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L446", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L446", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L449", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getSection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L452", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getEntityType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L453", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getEntityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L453", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L454", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L457", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L463", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L464", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L465", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L468", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L477", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L477", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L482", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L485", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L487", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L490", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L491", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L494", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L496", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L499", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L501", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L505", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "setPrice", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L506", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L509", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L510", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L510", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L517", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L519", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L523", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L526", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L526", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L533", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L535", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L539", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L542", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L542", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L543", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "setPrice", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L544", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L547", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L548", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L548", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L555", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L557", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L561", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L564", "receiver": null}, {"caller_nid": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php", "source_location": "L565", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9.json b/graphify-out/cache/ast/v0.8.44/84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9.json new file mode 100644 index 00000000..ca8ea4c7 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "label": "SpecialtyController.php", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L1"}, {"id": "controller_specialtycontroller_specialtycontroller", "label": "SpecialtyController", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L15"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_specialtycontroller_specialtycontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L18"}, {"id": "controller_specialtycontroller_specialtycontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22"}, {"id": "controller_specialtycontroller_specialtycontroller_doctorcounts", "label": ".doctorCounts()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L33"}, {"id": "controller_specialtycontroller_specialtycontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L60"}, {"id": "controller_specialtycontroller_specialtycontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L88"}, {"id": "controller_specialtycontroller_specialtycontroller_delete", "label": ".delete()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L111"}, {"id": "controller_specialtycontroller_specialtycontroller_adminlist", "label": ".adminList()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L124"}, {"id": "controller_specialtycontroller_specialtycontroller_slugify", "label": ".slugify()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L154"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "specialtyrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_specialty_controller_specialtycontroller_php", "target": "controller_specialtycontroller_specialtycontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L15", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L16", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L18", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_list", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_specialtycontroller_specialtycontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L22", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_doctorcounts", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L33", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_doctorcounts", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L33", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_specialtycontroller_specialtycontroller_doctorcounts", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L33", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L60", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L60", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_specialtycontroller_specialtycontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L60", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L88", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L88", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_specialtycontroller_specialtycontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L88", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_delete", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L111", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_delete", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L111", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_adminlist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L124", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_adminlist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L124", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_specialtycontroller_specialtycontroller_adminlist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L124", "weight": 1.0, "context": "return_type"}, {"source": "controller_specialtycontroller_specialtycontroller", "target": "controller_specialtycontroller_specialtycontroller_slugify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L154", "weight": 1.0}, {"source": "controller_specialtycontroller_specialtycontroller_create", "target": "controller_specialtycontroller_specialtycontroller_slugify", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Specialty/Controller/SpecialtyController.php", "source_location": "L70", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_specialtycontroller_specialtycontroller_list", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L25", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L26", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_list", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L27", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_list", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L28", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_list", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L30", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "doctorCountsByCity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L47", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L49", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L50", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L53", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_doctorcounts", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L64", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L64", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L65", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L67", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "findBySlug", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L84", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L85", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_create", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L85", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "setSlug", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L101", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L101", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "setParent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_update", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_delete", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L117", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_delete", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L120", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_delete", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L128", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L130", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L130", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "addSelect", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L135", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "addOrderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L138", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L138", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L146", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L148", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_adminlist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_slugify", "callee": "mb_strtolower", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L156", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_slugify", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L156", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L157", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_specialtycontroller_specialtycontroller_slugify", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php", "source_location": "L159", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed.json b/graphify-out/cache/ast/v0.8.44/8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed.json new file mode 100644 index 00000000..d4a7209a --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_secretary_md", "label": "secretary.md", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L1"}, {"id": "api_secretary_secretary_api", "label": "Secretary API", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L1"}, {"id": "api_secretary_\u0645\u062f\u0644_scope", "label": "\u0645\u062f\u0644 Scope", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L5"}, {"id": "api_secretary_post_api_v1_secretary", "label": "POST `/api/v1/secretary`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L22"}, {"id": "api_secretary_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L28"}, {"id": "api_secretary_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L101"}, {"id": "api_secretary_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L129"}, {"id": "api_secretary_get_api_v1_secretary_uuid", "label": "GET `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L141"}, {"id": "api_secretary_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L147"}, {"id": "api_secretary_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L153"}, {"id": "api_secretary_errors_169", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L169"}, {"id": "api_secretary_patch_api_v1_secretary_uuid", "label": "PATCH `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L179"}, {"id": "api_secretary_request_body_application_json_185", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L185"}, {"id": "api_secretary_response_200_209", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L209"}, {"id": "api_secretary_errors_213", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L213"}, {"id": "api_secretary_delete_api_v1_secretary_uuid", "label": "DELETE `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L223"}, {"id": "api_secretary_response_200_229", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L229"}, {"id": "api_secretary_errors_235", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L235"}, {"id": "api_secretary_get_api_v1_secretaries_doctoruuid", "label": "GET `/api/v1/secretaries/{doctorUuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L245"}, {"id": "api_secretary_path_parameters_251", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L251"}, {"id": "api_secretary_response_200_257", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L257"}, {"id": "api_secretary_errors_277", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L277"}, {"id": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "label": "GET `/api/v1/secretaries/clinic/{clinicUuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L287"}, {"id": "api_secretary_path_parameters_293", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L293"}, {"id": "api_secretary_response_200_299", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L299"}, {"id": "api_secretary_notes", "label": "Notes", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L319"}, {"id": "api_secretary_errors_325", "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L325"}, {"id": "api_secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "label": "\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0646\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "file_type": "document", "source_file": "docs/api/secretary.md", "source_location": "L335"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_secretary_md", "target": "api_secretary_secretary_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L1", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_\u0645\u062f\u0644_scope", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L5", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_post_api_v1_secretary", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L22", "weight": 1.0}, {"source": "api_secretary_post_api_v1_secretary", "target": "api_secretary_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L28", "weight": 1.0}, {"source": "api_secretary_post_api_v1_secretary", "target": "api_secretary_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L101", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_secretary_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_sms_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L127", "weight": 1.0}, {"source": "api_secretary_post_api_v1_secretary", "target": "api_secretary_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L129", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_get_api_v1_secretary_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L141", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretary_uuid", "target": "api_secretary_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L147", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretary_uuid", "target": "api_secretary_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L153", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretary_uuid", "target": "api_secretary_errors_169", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L169", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_patch_api_v1_secretary_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L179", "weight": 1.0}, {"source": "api_secretary_patch_api_v1_secretary_uuid", "target": "api_secretary_request_body_application_json_185", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L185", "weight": 1.0}, {"source": "api_secretary_patch_api_v1_secretary_uuid", "target": "api_secretary_response_200_209", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L209", "weight": 1.0}, {"source": "api_secretary_patch_api_v1_secretary_uuid", "target": "api_secretary_errors_213", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L213", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_delete_api_v1_secretary_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L223", "weight": 1.0}, {"source": "api_secretary_delete_api_v1_secretary_uuid", "target": "api_secretary_response_200_229", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L229", "weight": 1.0}, {"source": "api_secretary_delete_api_v1_secretary_uuid", "target": "api_secretary_errors_235", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L235", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_get_api_v1_secretaries_doctoruuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L245", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_doctoruuid", "target": "api_secretary_path_parameters_251", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L251", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_doctoruuid", "target": "api_secretary_response_200_257", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L257", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_doctoruuid", "target": "api_secretary_errors_277", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L277", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L287", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "target": "api_secretary_path_parameters_293", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L293", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "target": "api_secretary_response_200_299", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L299", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "target": "api_secretary_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L319", "weight": 1.0}, {"source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "target": "api_secretary_errors_325", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L325", "weight": 1.0}, {"source": "api_secretary_secretary_api", "target": "api_secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", "source_location": "L335", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/8bca602dbe641a0ea0900bc21d5cfd52a303d1a16b2ee3e2291fa07bd2441d93.json b/graphify-out/cache/ast/v0.8.44/8bca602dbe641a0ea0900bc21d5cfd52a303d1a16b2ee3e2291fa07bd2441d93.json new file mode 100644 index 00000000..3d1bda65 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/8bca602dbe641a0ea0900bc21d5cfd52a303d1a16b2ee3e2291fa07bd2441d93.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "label": "LocationController.php", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L1"}, {"id": "controller_locationcontroller_locationcontroller", "label": "LocationController", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L17"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_locationcontroller_locationcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L20"}, {"id": "controller_locationcontroller_locationcontroller_provinces", "label": ".provinces()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L27"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L27"}, {"id": "controller_locationcontroller_locationcontroller_cities", "label": ".cities()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34"}, {"id": "controller_locationcontroller_locationcontroller_createprovince", "label": ".createProvince()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L47"}, {"id": "controller_locationcontroller_locationcontroller_updateprovince", "label": ".updateProvince()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L65"}, {"id": "controller_locationcontroller_locationcontroller_deleteprovince", "label": ".deleteProvince()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L83"}, {"id": "controller_locationcontroller_locationcontroller_createcity", "label": ".createCity()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L98"}, {"id": "controller_locationcontroller_locationcontroller_updatecity", "label": ".updateCity()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L120"}, {"id": "controller_locationcontroller_locationcontroller_deletecity", "label": ".deleteCity()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L141"}, {"id": "controller_locationcontroller_locationcontroller_adminprovinces", "label": ".adminProvinces()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L156"}, {"id": "controller_locationcontroller_locationcontroller_admincities", "label": ".adminCities()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L185"}, {"id": "controller_locationcontroller_locationcontroller_applycitydata", "label": ".applyCityData()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L220"}, {"id": "city", "label": "City", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L220"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "city", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "province", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "cityrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "provincerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_location_controller_locationcontroller_php", "target": "controller_locationcontroller_locationcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L17", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L18", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L20", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_provinces", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L27", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_provinces", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L27", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_cities", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_cities", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_cities", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L34", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_createprovince", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L47", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_createprovince", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_createprovince", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L47", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_updateprovince", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L65", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_updateprovince", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L65", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_updateprovince", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L65", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_deleteprovince", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L83", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_deleteprovince", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L83", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_createcity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L98", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_createcity", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L98", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_createcity", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L98", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_updatecity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L120", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_updatecity", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L120", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_updatecity", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L120", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_deletecity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L141", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_deletecity", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L141", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_adminprovinces", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L156", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_adminprovinces", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L156", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_adminprovinces", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L156", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_admincities", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L185", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_admincities", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L185", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_admincities", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L185", "weight": 1.0, "context": "return_type"}, {"source": "controller_locationcontroller_locationcontroller", "target": "controller_locationcontroller_locationcontroller_applycitydata", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L220", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_applycitydata", "target": "city", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L220", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_locationcontroller_locationcontroller_createcity", "target": "controller_locationcontroller_locationcontroller_applycitydata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L114", "weight": 1.0}, {"source": "controller_locationcontroller_locationcontroller_updatecity", "target": "controller_locationcontroller_locationcontroller_applycitydata", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Location/Controller/LocationController.php", "source_location": "L135", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_locationcontroller_locationcontroller_provinces", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L30", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_provinces", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L30", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_provinces", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L30", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_provinces", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L31", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_cities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L37", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_cities", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L38", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_cities", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L39", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_cities", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L40", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_cities", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L42", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L52", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L61", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createprovince", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L69", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L76", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L79", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L80", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updateprovince", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L80", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deleteprovince", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deleteprovince", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L89", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deleteprovince", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deleteprovince", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L93", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L105", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L109", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L117", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_createcity", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L117", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L124", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L126", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L129", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L130", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L130", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L131", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "setProvince", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L133", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L138", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_updatecity", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L138", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deletecity", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deletecity", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L147", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deletecity", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L150", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_deletecity", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L165", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L166", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L166", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L166", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "addOrderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L171", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L171", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_adminprovinces", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L189", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L191", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L191", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "addSelect", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L197", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "addOrderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L207", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L207", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_admincities", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L215", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L222", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L222", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L223", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setWeight", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L223", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L224", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L225", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L226", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setContactPhone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L226", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setEmail", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setDescription", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L229", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setSlogan", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L229", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setDomain", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setKeywords", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L232", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setFooterDescription", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L232", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setSocialMedia", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L234", "receiver": null}, {"caller_nid": "controller_locationcontroller_locationcontroller_applycitydata", "callee": "setLogoUrl", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php", "source_location": "L234", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2.json b/graphify-out/cache/ast/v0.8.44/8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2.json new file mode 100644 index 00000000..721b0bcd --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_qa_full_system_audit_md", "label": "qa-full-system-audit.md", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L1"}, {"id": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "label": "\u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 QA \u0633\u06cc\u0633\u062a\u0645 \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f Symfony API + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L1"}, {"id": "prompt_qa_full_system_audit_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L3"}, {"id": "prompt_qa_full_system_audit_\u0646\u0642\u0634_\u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", "label": "\u0646\u0642\u0634 \u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L7"}, {"id": "prompt_qa_full_system_audit_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L11"}, {"id": "prompt_qa_full_system_audit_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L19"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_\u0646\u0642\u0634\u0647_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0631\u0627\u06cc_\u062a\u0633\u062a", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (\u0646\u0642\u0634\u0647\u0654 \u0633\u06cc\u0633\u062a\u0645 \u0628\u0631\u0627\u06cc \u062a\u0633\u062a)", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L25"}, {"id": "prompt_qa_full_system_audit_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u0633\u062a", "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627 (\u0642\u0628\u0644 \u0627\u0632 \u0634\u0631\u0648\u0639 \u062a\u0633\u062a)", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L45"}, {"id": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L73"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f0_baseline", "label": "\u0641\u0627\u0632 \u06f0 \u2014 Baseline", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L77"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f1_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0627\u0633\u062e_\u0648_envelope", "label": "\u0641\u0627\u0632 \u06f1 \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u067e\u0627\u0633\u062e \u0648 Envelope", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L87"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f2_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627_auth_rbac", "label": "\u0641\u0627\u0632 \u06f2 \u2014 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627 (Auth / RBAC)", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L105"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627", "label": "\u0641\u0627\u0632 \u06f3 \u2014 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0648\u0631\u0648\u062f\u06cc \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u062e\u0637\u0627", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L121"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f4_\u0627\u0645\u0646\u06cc\u062a_api", "label": "\u0641\u0627\u0632 \u06f4 \u2014 \u0627\u0645\u0646\u06cc\u062a API", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L129"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f5_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react_spa", "label": "\u0641\u0627\u0632 \u06f5 \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React SPA", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L137"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f6_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0648_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u06a9\u0627\u0631\u0628\u0631_e2e", "label": "\u0641\u0627\u0632 \u06f6 \u2014 \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0648 \u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc \u0648\u0627\u0642\u0639\u06cc \u06a9\u0627\u0631\u0628\u0631 (E2E)", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L153"}, {"id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f7_\u062a\u062f\u0648\u06cc\u0646_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc", "label": "\u0641\u0627\u0632 \u06f7 \u2014 \u062a\u062f\u0648\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L164"}, {"id": "prompt_qa_full_system_audit_\u0642\u0627\u0644\u0628_\u06af\u0632\u0627\u0631\u0634_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u06cc\u0627\u0641\u062a\u0647", "label": "\u0642\u0627\u0644\u0628 \u06af\u0632\u0627\u0631\u0634 (\u0628\u0631\u0627\u06cc \u0647\u0631 \u06cc\u0627\u0641\u062a\u0647)", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L170"}, {"id": "prompt_qa_full_system_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L189"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_qa_full_system_audit_md", "target": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0646\u0642\u0634_\u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L11", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L19", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_\u0646\u0642\u0634\u0647_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0631\u0627\u06cc_\u062a\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L25", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L73", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f0_baseline", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L77", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f1_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0627\u0633\u062e_\u0648_envelope", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L87", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f2_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627_auth_rbac", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L105", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L121", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f4_\u0627\u0645\u0646\u06cc\u062a_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L129", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f5_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react_spa", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L137", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f6_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0648_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u06a9\u0627\u0631\u0628\u0631_e2e", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L153", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f7_\u062a\u062f\u0648\u06cc\u0646_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L164", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0642\u0627\u0644\u0628_\u06af\u0632\u0627\u0631\u0634_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u06cc\u0627\u0641\u062a\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L170", "weight": 1.0}, {"source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", "target": "prompt_qa_full_system_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/qa-full-system-audit.md", "source_location": "L189", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb.json b/graphify-out/cache/ast/v0.8.44/8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb.json new file mode 100644 index 00000000..c116c1ad --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_specialty_md", "label": "specialty.md", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L1"}, {"id": "api_specialty_specialty_api", "label": "Specialty API", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L1"}, {"id": "api_specialty_get_api_v1_specialties", "label": "GET `/api/v1/specialties`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L7"}, {"id": "api_specialty_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L13"}, {"id": "api_specialty_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L18"}, {"id": "api_specialty_get_api_v1_specialties_doctor_counts", "label": "GET `/api/v1/specialties/doctor-counts`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L45"}, {"id": "api_specialty_query_parameters_51", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L51"}, {"id": "api_specialty_response_200_56", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L56"}, {"id": "api_specialty_get_api_v1_admin_specialties", "label": "GET `/api/v1/admin/specialties`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L78"}, {"id": "api_specialty_query_parameters_84", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L84"}, {"id": "api_specialty_response_200_91", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L91"}, {"id": "api_specialty_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L100"}, {"id": "api_specialty_post_api_v1_admin_specialty", "label": "POST `/api/v1/admin/specialty`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L108"}, {"id": "api_specialty_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L114"}, {"id": "api_specialty_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L133"}, {"id": "api_specialty_errors_136", "label": "Errors", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L136"}, {"id": "api_specialty_patch_api_v1_admin_specialty_id", "label": "PATCH `/api/v1/admin/specialty/{id}`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L145"}, {"id": "api_specialty_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L151"}, {"id": "api_specialty_request_body_all_optional", "label": "Request Body (all optional)", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L156"}, {"id": "api_specialty_response_200_167", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L167"}, {"id": "api_specialty_errors_170", "label": "Errors", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L170"}, {"id": "api_specialty_delete_api_v1_admin_specialty_id", "label": "DELETE `/api/v1/admin/specialty/{id}`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L179"}, {"id": "api_specialty_response_200_185", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L185"}, {"id": "api_specialty_errors_190", "label": "Errors", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L190"}, {"id": "api_specialty_bulk_import_export", "label": "Bulk import / export", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L199"}, {"id": "api_specialty_sorting_by_id", "label": "Sorting by id", "file_type": "document", "source_file": "docs/api/specialty.md", "source_location": "L205"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_specialty_md", "target": "api_specialty_specialty_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L1", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_get_api_v1_specialties", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L7", "weight": 1.0}, {"source": "api_specialty_get_api_v1_specialties", "target": "api_specialty_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L13", "weight": 1.0}, {"source": "api_specialty_get_api_v1_specialties", "target": "api_specialty_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L18", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_get_api_v1_specialties_doctor_counts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L45", "weight": 1.0}, {"source": "api_specialty_get_api_v1_specialties_doctor_counts", "target": "api_specialty_query_parameters_51", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L51", "weight": 1.0}, {"source": "api_specialty_get_api_v1_specialties_doctor_counts", "target": "api_specialty_response_200_56", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L56", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_get_api_v1_admin_specialties", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L78", "weight": 1.0}, {"source": "api_specialty_get_api_v1_admin_specialties", "target": "api_specialty_query_parameters_84", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L84", "weight": 1.0}, {"source": "api_specialty_get_api_v1_admin_specialties", "target": "api_specialty_response_200_91", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L91", "weight": 1.0}, {"source": "api_specialty_get_api_v1_admin_specialties", "target": "api_specialty_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L100", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_post_api_v1_admin_specialty", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L108", "weight": 1.0}, {"source": "api_specialty_post_api_v1_admin_specialty", "target": "api_specialty_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L114", "weight": 1.0}, {"source": "api_specialty_post_api_v1_admin_specialty", "target": "api_specialty_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L133", "weight": 1.0}, {"source": "api_specialty_post_api_v1_admin_specialty", "target": "api_specialty_errors_136", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L136", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_patch_api_v1_admin_specialty_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L145", "weight": 1.0}, {"source": "api_specialty_patch_api_v1_admin_specialty_id", "target": "api_specialty_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L151", "weight": 1.0}, {"source": "api_specialty_patch_api_v1_admin_specialty_id", "target": "api_specialty_request_body_all_optional", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L156", "weight": 1.0}, {"source": "api_specialty_patch_api_v1_admin_specialty_id", "target": "api_specialty_response_200_167", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L167", "weight": 1.0}, {"source": "api_specialty_patch_api_v1_admin_specialty_id", "target": "api_specialty_errors_170", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L170", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_delete_api_v1_admin_specialty_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L179", "weight": 1.0}, {"source": "api_specialty_delete_api_v1_admin_specialty_id", "target": "api_specialty_response_200_185", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L185", "weight": 1.0}, {"source": "api_specialty_delete_api_v1_admin_specialty_id", "target": "api_specialty_errors_190", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L190", "weight": 1.0}, {"source": "api_specialty_specialty_api", "target": "api_specialty_bulk_import_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L199", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_specialty_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_category_import_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L202", "weight": 1.0}, {"source": "api_specialty_bulk_import_export", "target": "api_specialty_sorting_by_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/specialty.md", "source_location": "L205", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf.json b/graphify-out/cache/ast/v0.8.44/94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf.json new file mode 100644 index 00000000..caf3f577 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mellatgateway_php", "label": "MellatGateway.php", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L1"}, {"id": "gateway_mellatgateway_mellatgateway", "label": "MellatGateway", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L9"}, {"id": "paymentgatewayinterface", "label": "PaymentGatewayInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "gateway_mellatgateway_mellatgateway_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L13"}, {"id": "gateway_mellatgateway_mellatgateway_getname", "label": ".getName()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L22"}, {"id": "gateway_mellatgateway_mellatgateway_isconfigured", "label": ".isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L24"}, {"id": "gateway_mellatgateway_mellatgateway_cfg", "label": ".cfg()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L31"}, {"id": "gateway_mellatgateway_mellatgateway_initiate", "label": ".initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L36"}, {"id": "paymentinitresult", "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L36"}, {"id": "gateway_mellatgateway_mellatgateway_verify", "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L63"}, {"id": "paymentverifyresult", "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L63"}, {"id": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "label": ".buildRequestPayload()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L97"}, {"id": "gateway_mellatgateway_mellatgateway_buildverifypayload", "label": ".buildVerifyPayload()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L123"}, {"id": "gateway_mellatgateway_mellatgateway_parserescode", "label": ".parseResCode()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L145"}, {"id": "gateway_mellatgateway_mellatgateway_parserefid", "label": ".parseRefId()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L152"}, {"id": "gateway_mellatgateway_mellatgateway_date", "label": ".date()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L159"}, {"id": "gateway_mellatgateway_mellatgateway_time", "label": ".time()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L160"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mellatgateway_php", "target": "siteconfigrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mellatgateway_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mellatgateway_php", "target": "httpclientinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_gateway_mellatgateway_php", "target": "gateway_mellatgateway_mellatgateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L9", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "paymentgatewayinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L9", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L13", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_getname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L22", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_isconfigured", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L24", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_cfg", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L31", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_initiate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L36", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_initiate", "target": "paymentinitresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L36", "weight": 1.0, "context": "return_type"}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_verify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L63", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_verify", "target": "paymentverifyresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L63", "weight": 1.0, "context": "return_type"}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L97", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_buildverifypayload", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L123", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_parserescode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L145", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_parserefid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L152", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_date", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L159", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_time", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L160", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_isconfigured", "target": "gateway_mellatgateway_mellatgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L26", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_initiate", "target": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L41", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_initiate", "target": "gateway_mellatgateway_mellatgateway_parserescode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L47", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_initiate", "target": "gateway_mellatgateway_mellatgateway_parserefid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L53", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_verify", "target": "gateway_mellatgateway_mellatgateway_buildverifypayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L79", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_verify", "target": "gateway_mellatgateway_mellatgateway_parserescode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L85", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "target": "gateway_mellatgateway_mellatgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L99", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "target": "gateway_mellatgateway_mellatgateway_date", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L112", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_buildrequestpayload", "target": "gateway_mellatgateway_mellatgateway_time", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L113", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_buildverifypayload", "target": "gateway_mellatgateway_mellatgateway_cfg", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L125", "weight": 1.0}, {"source": "gateway_mellatgateway_mellatgateway_time", "target": "gateway_mellatgateway_mellatgateway_date", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Gateway/MellatGateway.php", "source_location": "L160", "weight": 1.0}], "raw_calls": [{"caller_nid": "gateway_mellatgateway_mellatgateway_cfg", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L33", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L39", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L47", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L53", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L58", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_initiate", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L59", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L77", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L85", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L92", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L92", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L92", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L92", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L92", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_verify", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L93", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserescode", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L147", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserescode", "callee": "explode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L148", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserescode", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L149", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserefid", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L154", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserefid", "callee": "explode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L155", "receiver": null}, {"caller_nid": "gateway_mellatgateway_mellatgateway_parserefid", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php", "source_location": "L156", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/9bf4a94a3cb6f1852a51d0079085d6e0eb17c0fdba5046f98cc8797cfdc56141.json b/graphify-out/cache/ast/v0.8.44/9bf4a94a3cb6f1852a51d0079085d6e0eb17c0fdba5046f98cc8797cfdc56141.json new file mode 100644 index 00000000..5a19b9c6 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/9bf4a94a3cb6f1852a51d0079085d6e0eb17c0fdba5046f98cc8797cfdc56141.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "label": "PaymentController.php", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L1"}, {"id": "controller_paymentcontroller_paymentcontroller", "label": "PaymentController", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L30"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_paymentcontroller_paymentcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L39"}, {"id": "controller_paymentcontroller_paymentcontroller_initiateappointment", "label": ".initiateAppointment()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61"}, {"id": "controller_paymentcontroller_paymentcontroller_callback", "label": ".callback()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216"}, {"id": "response", "label": "Response", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216"}, {"id": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "label": ".initiateSubscription()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L319"}, {"id": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", "label": ".subscriptionCallback()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L464"}, {"id": "controller_paymentcontroller_paymentcontroller_config", "label": ".config()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L499"}, {"id": "controller_paymentcontroller_paymentcontroller_activegateways", "label": ".activeGateways()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L561"}, {"id": "controller_paymentcontroller_paymentcontroller_mypayments", "label": ".myPayments()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578"}, {"id": "controller_paymentcontroller_paymentcontroller_getstatus", "label": ".getStatus()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L595"}, {"id": "controller_paymentcontroller_paymentcontroller_resolvegateway", "label": ".resolveGateway()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L613"}, {"id": "paymentgatewayinterface", "label": "PaymentGatewayInterface", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L613"}, {"id": "controller_paymentcontroller_paymentcontroller_allowedhosts", "label": ".allowedHosts()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L627"}, {"id": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "label": ".isAllowedFrontend()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L634"}, {"id": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "label": ".isAllowedCallbackIp()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L644"}, {"id": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "label": ".handleSmsWalletCharge()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L665"}, {"id": "payment", "label": "Payment", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L665"}, {"id": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "label": ".handleAppointmentConfirmation()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L679"}, {"id": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "label": ".handleSubscriptionActivation()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L712"}, {"id": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "label": ".redirectToFrontend()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L735"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "appointment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "appointmentrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "payment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "siteconfigrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "mellatgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "mockgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "sepgateway", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "paymentrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "circuitbreakerservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "smsservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "smswalletservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "subscriptionservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "redirectresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L24", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L25", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L26", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L27", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L28", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_payment_controller_paymentcontroller_php", "target": "controller_paymentcontroller_paymentcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L30", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L31", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L39", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_initiateappointment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L61", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_callback", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "response", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L216", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L319", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L319", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L319", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L319", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L464", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L464", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", "target": "response", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L464", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_config", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L499", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_config", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L499", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_activegateways", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L561", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_mypayments", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_mypayments", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_mypayments", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_mypayments", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L578", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_getstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L595", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_getstatus", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L595", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_getstatus", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L595", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L613", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_resolvegateway", "target": "paymentgatewayinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L613", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_allowedhosts", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L627", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L634", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L644", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L665", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "target": "payment", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L665", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L679", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "target": "payment", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L679", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L712", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "target": "payment", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L712", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller", "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L735", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "target": "payment", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L735", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "target": "response", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L735", "weight": 1.0, "context": "return_type"}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "controller_paymentcontroller_paymentcontroller_getstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L172", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L177", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L181", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiateappointment", "target": "payment", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L191", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L248", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L262", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "payment", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L267", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L273", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L307", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L309", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_callback", "target": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L311", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L425", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "controller_paymentcontroller_paymentcontroller_resolvegateway", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L429", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "payment", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L439", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_subscriptioncallback", "target": "controller_paymentcontroller_paymentcontroller_callback", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L494", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_config", "target": "controller_paymentcontroller_paymentcontroller_activegateways", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L553", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "target": "controller_paymentcontroller_paymentcontroller_allowedhosts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L636", "weight": 1.0}, {"source": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "target": "controller_paymentcontroller_paymentcontroller_getstatus", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Payment/Controller/PaymentController.php", "source_location": "L746", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L159", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L163", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L165", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L178", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "isOpen", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "setAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L193", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L195", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "initiate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getAmountRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "recordFailure", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "recordSuccess", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L203", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "setGatewayToken", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L205", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L207", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L208", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiateappointment", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L247", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "array_merge", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L252", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "findByOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L255", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setCallbackIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L260", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L267", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L268", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "recordFailure", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L270", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "recordSuccess", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L276", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getAmountRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L282", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L283", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L284", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "findByReferenceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L293", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L294", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L294", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L296", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L302", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "setReferenceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L303", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L304", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L306", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L308", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_callback", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L310", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L417", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L418", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L425", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L426", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L431", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "isOpen", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L435", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L435", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L438", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "setMetadata", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L441", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L443", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L445", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "initiate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L446", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L446", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "recordFailure", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L449", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L450", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "recordSuccess", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L453", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "setGatewayToken", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L454", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L455", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L457", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L458", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "callee": "getOrderId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L460", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_config", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L548", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_config", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_config", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L552", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_activegateways", "callee": "isConfigured", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L570", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_activegateways", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L571", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L582", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L583", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L586", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L587", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L588", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "countByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L590", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_mypayments", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L592", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L599", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L601", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L604", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L604", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L604", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L604", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L605", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L608", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_getstatus", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L608", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_resolvegateway", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_allowedhosts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L629", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_allowedhosts", "callee": "array_filter", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L631", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_allowedhosts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L631", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_allowedhosts", "callee": "explode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L631", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L637", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "callee": "parse_url", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L640", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L641", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L646", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "callee": "explode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L650", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "callee": "ip2long", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L652", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "callee": "ip2long", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L653", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "callee": "getMetadata", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L667", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L669", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "callee": "getOrCreate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L675", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "callee": "charge", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L676", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "callee": "getAmountRials", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L676", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L681", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "canTransitionTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L682", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "transitionTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L686", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L687", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L689", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "processAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L690", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L692", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getBookingRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L693", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L694", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getPatientMobile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L697", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "formatDateTime", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L699", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getSlotStart", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L699", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "resolve", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L700", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L701", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L701", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "callee": "dispatchAsync", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L704", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getMetadata", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L714", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L720", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L721", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "createFromPayment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L723", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L723", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "processSubscription", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L724", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L724", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L724", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L728", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "createFromPayment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "processSubscription", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getRepresentationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "callee": "getFrontendAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L737", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L738", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L741", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "callee": "str_contains", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L745", "receiver": null}, {"caller_nid": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php", "source_location": "L746", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/b5759107f3ded3c713da1d09e1f1fa5c69e8a8a5453f8740d8c18ffdc73462a4.json b/graphify-out/cache/ast/v0.8.44/b5759107f3ded3c713da1d09e1f1fa5c69e8a8a5453f8740d8c18ffdc73462a4.json new file mode 100644 index 00000000..0a941383 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/b5759107f3ded3c713da1d09e1f1fa5c69e8a8a5453f8740d8c18ffdc73462a4.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_payment_md", "label": "payment.md", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L1"}, {"id": "api_payment_payment_api", "label": "Payment API", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L1"}, {"id": "api_payment_get_api_v1_payment_config", "label": "GET `/api/v1/payment/config`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L8"}, {"id": "api_payment_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L14"}, {"id": "api_payment_get_api_v1_my_payments", "label": "GET `/api/v1/my/payments`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L40"}, {"id": "api_payment_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L46"}, {"id": "api_payment_response_200_paginated", "label": "Response `200` (paginated)", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L53"}, {"id": "api_payment_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L76"}, {"id": "api_payment_post_api_v1_payment_appointment", "label": "POST `/api/v1/payment/appointment`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L83"}, {"id": "api_payment_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L89"}, {"id": "api_payment_response_200_104", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L104"}, {"id": "api_payment_errors_122", "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L122"}, {"id": "api_payment_post_api_v1_payment_callback_gateway", "label": "POST `/api/v1/payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L133"}, {"id": "api_payment_get_api_v1_payment_callback_gateway", "label": "GET `/api/v1/payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L134"}, {"id": "api_payment_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L146"}, {"id": "api_payment_request_varies_by_gateway", "label": "Request (varies by gateway)", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L151"}, {"id": "api_payment_response", "label": "Response", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L162"}, {"id": "api_payment_notes", "label": "Notes", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L175"}, {"id": "api_payment_post_api_v1_subscription_payment", "label": "POST `/api/v1/subscription-payment`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L182"}, {"id": "api_payment_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L188"}, {"id": "api_payment_response_200_203", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L203"}, {"id": "api_payment_errors_215", "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L215"}, {"id": "api_payment_post_get_api_v1_subscription_payment_callback_gateway", "label": "POST/GET `/api/v1/subscription-payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L224"}, {"id": "api_payment_get_api_v1_payment_uuid", "label": "GET `/api/v1/payment/{uuid}`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L232"}, {"id": "api_payment_path_parameters_238", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L238"}, {"id": "api_payment_response_200_243", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L243"}, {"id": "api_payment_errors_272", "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L272"}, {"id": "api_payment_sandbox_test_mode_origin_allowlist", "label": "Sandbox (test) mode & origin allowlist", "file_type": "document", "source_file": "docs/api/payment.md", "source_location": "L281"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_payment_md", "target": "api_payment_payment_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L1", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_get_api_v1_payment_config", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L8", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_config", "target": "api_payment_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L14", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_get_api_v1_my_payments", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L40", "weight": 1.0}, {"source": "api_payment_get_api_v1_my_payments", "target": "api_payment_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L46", "weight": 1.0}, {"source": "api_payment_get_api_v1_my_payments", "target": "api_payment_response_200_paginated", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L53", "weight": 1.0}, {"source": "api_payment_get_api_v1_my_payments", "target": "api_payment_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L76", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_post_api_v1_payment_appointment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L83", "weight": 1.0}, {"source": "api_payment_post_api_v1_payment_appointment", "target": "api_payment_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L89", "weight": 1.0}, {"source": "api_payment_post_api_v1_payment_appointment", "target": "api_payment_response_200_104", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L104", "weight": 1.0}, {"source": "api_payment_post_api_v1_payment_appointment", "target": "api_payment_errors_122", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L122", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_post_api_v1_payment_callback_gateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L133", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_get_api_v1_payment_callback_gateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L134", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_callback_gateway", "target": "api_payment_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L146", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_callback_gateway", "target": "api_payment_request_varies_by_gateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L151", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_callback_gateway", "target": "api_payment_response", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L162", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_callback_gateway", "target": "api_payment_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L175", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_post_api_v1_subscription_payment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L182", "weight": 1.0}, {"source": "api_payment_post_api_v1_subscription_payment", "target": "api_payment_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L188", "weight": 1.0}, {"source": "api_payment_post_api_v1_subscription_payment", "target": "api_payment_response_200_203", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L203", "weight": 1.0}, {"source": "api_payment_post_api_v1_subscription_payment", "target": "api_payment_errors_215", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L215", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_post_get_api_v1_subscription_payment_callback_gateway", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L224", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_get_api_v1_payment_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L232", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_uuid", "target": "api_payment_path_parameters_238", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L238", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_uuid", "target": "api_payment_response_200_243", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L243", "weight": 1.0}, {"source": "api_payment_get_api_v1_payment_uuid", "target": "api_payment_errors_272", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L272", "weight": 1.0}, {"source": "api_payment_payment_api", "target": "api_payment_sandbox_test_mode_origin_allowlist", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", "source_location": "L281", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/bb6a974d013754fe77c2577a07a554078f429acaf013a06e237ff08147e2b673.json b/graphify-out/cache/ast/v0.8.44/bb6a974d013754fe77c2577a07a554078f429acaf013a06e237ff08147e2b673.json new file mode 100644 index 00000000..b2d26a4e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/bb6a974d013754fe77c2577a07a554078f429acaf013a06e237ff08147e2b673.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "label": "SiteConfigController.php", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L1"}, {"id": "controller_siteconfigcontroller_siteconfigcontroller", "label": "SiteConfigController", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L14"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_siteconfigcontroller_siteconfigcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L40"}, {"id": "controller_siteconfigcontroller_siteconfigcontroller_get", "label": ".get()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L46"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L46"}, {"id": "controller_siteconfigcontroller_siteconfigcontroller_patch", "label": ".patch()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55"}, {"id": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "label": ".taxHistory()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L87"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "siteconfigrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_config_controller_siteconfigcontroller_php", "target": "controller_siteconfigcontroller_siteconfigcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L14", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L16", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller", "target": "controller_siteconfigcontroller_siteconfigcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L40", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller", "target": "controller_siteconfigcontroller_siteconfigcontroller_get", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L46", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_get", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L46", "weight": 1.0, "context": "return_type"}, {"source": "controller_siteconfigcontroller_siteconfigcontroller", "target": "controller_siteconfigcontroller_siteconfigcontroller_patch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_patch", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_patch", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_patch", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L55", "weight": 1.0, "context": "return_type"}, {"source": "controller_siteconfigcontroller_siteconfigcontroller", "target": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L87", "weight": 1.0}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L87", "weight": 1.0, "context": "return_type"}, {"source": "controller_siteconfigcontroller_siteconfigcontroller_patch", "target": "controller_siteconfigcontroller_siteconfigcontroller_get", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Config/Controller/SiteConfigController.php", "source_location": "L61", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_get", "callee": "getAll", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L49", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_get", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L52", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L65", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L84", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_patch", "callee": "getAll", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L84", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "callee": "findBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php", "source_location": "L93", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e.json b/graphify-out/cache/ast/v0.8.44/dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e.json new file mode 100644 index 00000000..841c99b8 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_sms_settings_apikey_env_only_md", "label": "sms-settings-apikey-env-only.md", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L1"}, {"id": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "label": "\u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u00ab\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0627\u0645\u06a9 (SMS)\u00bb \u2014 \u0641\u0642\u0637 API Key \u0627\u0632 env", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L1"}, {"id": "prompt_sms_settings_apikey_env_only_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L3"}, {"id": "prompt_sms_settings_apikey_env_only_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L7"}, {"id": "prompt_sms_settings_apikey_env_only_\u0647\u062f\u0641", "label": "\u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L23"}, {"id": "prompt_sms_settings_apikey_env_only_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L31"}, {"id": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L47"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f1_\u0641\u0631\u0645_\u067e\u0646\u0644_assets_admin_pages_settingspage_tsx", "label": "\u06f1. \u0641\u0631\u0645 \u067e\u0646\u0644 \u2014 `assets/admin/pages/SettingsPage.tsx`", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L49"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f2_src_config_repository_siteconfigrepository_php_defaults_\u062e\u0637\u0648\u0637_\u06f3\u06f2_\u06f3\u06f7", "label": "\u06f2. `src/Config/Repository/SiteConfigRepository.php` \u2014 `DEFAULTS` (\u062e\u0637\u0648\u0637 \u06f3\u06f2\u2013\u06f3\u06f7)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L98"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f3_src_config_controller_siteconfigcontroller_php_allowed_keys_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f4", "label": "\u06f3. `src/Config/Controller/SiteConfigController.php` \u2014 `ALLOWED_KEYS` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f4)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L110"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f4_src_sms_provider_kavehnegarprovider_php_\u062e\u0637\u0648\u0637_\u06f1\u06f3_\u06f2\u06f4", "label": "\u06f4. `src/Sms/Provider/KavehNegarProvider.php` (\u062e\u0637\u0648\u0637 \u06f1\u06f3\u2013\u06f2\u06f4)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L122"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f5_src_sms_controller_smswalletcontroller_php_\u062e\u0637_\u06f5\u06f6", "label": "\u06f5. `src/Sms/Controller/SmsWalletController.php` (\u062e\u0637 \u06f5\u06f6)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L137"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f6_config_services_yaml_\u062e\u0637\u0648\u0637_\u06f9\u06f2_\u06f9\u06f9", "label": "\u06f6. `config/services.yaml` (\u062e\u0637\u0648\u0637 \u06f9\u06f2\u2013\u06f9\u06f9)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L143"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f7_env_\u0641\u0639\u0644\u06cc_env_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f2_\u0648_\u06f6\u06f0_\u06f6\u06f4", "label": "\u06f7. env \u0641\u0639\u0644\u06cc \u2014 `.env` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f2 \u0648 \u06f6\u06f0\u2013\u06f6\u06f4)", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L157"}, {"id": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L177"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f1_backend_provider_\u06a9\u0627\u0648\u0647_\u0646\u06af\u0627\u0631_\u0641\u0642\u0637_\u0627\u0632_env", "label": "\u06f1. Backend \u2014 provider \u06a9\u0627\u0648\u0647\u200c\u0646\u06af\u0627\u0631 \u0641\u0642\u0637 \u0627\u0632 env", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L179"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f2_backend_\u062d\u0630\u0641_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_sms_\u0627\u0632_config", "label": "\u06f2. Backend \u2014 \u062d\u0630\u0641 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc SMS \u0627\u0632 config", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L193"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f3_backend_\u0642\u06cc\u0645\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0647_\u062b\u0627\u0628\u062a", "label": "\u06f3. Backend \u2014 \u0642\u06cc\u0645\u062a \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0647 \u062b\u0627\u0628\u062a", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L198"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f4_backend_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_read_only_\u06a9\u0644\u06cc\u062f_\u062f\u0631_\u067e\u0646\u0644", "label": "\u06f4. Backend \u2014 \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a read-only \u06a9\u0644\u06cc\u062f \u062f\u0631 \u067e\u0646\u0644", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L213"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f5_config_services_yaml", "label": "\u06f5. `config/services.yaml`", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L230"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f6_frontend_assets_admin_pages_settingspage_tsx", "label": "\u06f6. Frontend \u2014 `assets/admin/pages/SettingsPage.tsx`", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L242"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f7_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0647\u0645\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_env", "label": "\u06f7. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0647\u0645\u0647 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc env", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L277"}, {"id": "prompt_sms_settings_apikey_env_only_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_docs_api_sms_md", "label": "\u06f8. \u0645\u0633\u062a\u0646\u062f\u0627\u062a \u2014 `docs/api/sms.md`", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L295"}, {"id": "prompt_sms_settings_apikey_env_only_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L303"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_sms_settings_apikey_env_only_md", "target": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L23", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L31", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f1_\u0641\u0631\u0645_\u067e\u0646\u0644_assets_admin_pages_settingspage_tsx", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L49", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f2_src_config_repository_siteconfigrepository_php_defaults_\u062e\u0637\u0648\u0637_\u06f3\u06f2_\u06f3\u06f7", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L98", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f3_src_config_controller_siteconfigcontroller_php_allowed_keys_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L110", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f4_src_sms_provider_kavehnegarprovider_php_\u062e\u0637\u0648\u0637_\u06f1\u06f3_\u06f2\u06f4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L122", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f5_src_sms_controller_smswalletcontroller_php_\u062e\u0637_\u06f5\u06f6", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L137", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f6_config_services_yaml_\u062e\u0637\u0648\u0637_\u06f9\u06f2_\u06f9\u06f9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L143", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", "target": "prompt_sms_settings_apikey_env_only_\u06f7_env_\u0641\u0639\u0644\u06cc_env_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f2_\u0648_\u06f6\u06f0_\u06f6\u06f4", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L157", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L177", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f1_backend_provider_\u06a9\u0627\u0648\u0647_\u0646\u06af\u0627\u0631_\u0641\u0642\u0637_\u0627\u0632_env", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L179", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f2_backend_\u062d\u0630\u0641_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_sms_\u0627\u0632_config", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L193", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f3_backend_\u0642\u06cc\u0645\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0647_\u062b\u0627\u0628\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L198", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f4_backend_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_read_only_\u06a9\u0644\u06cc\u062f_\u062f\u0631_\u067e\u0646\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L213", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f5_config_services_yaml", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L230", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f6_frontend_assets_admin_pages_settingspage_tsx", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L242", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f7_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0647\u0645\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_env", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L277", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_sms_settings_apikey_env_only_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_docs_api_sms_md", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L295", "weight": 1.0}, {"source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", "target": "prompt_sms_settings_apikey_env_only_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", "source_location": "L303", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b.json b/graphify-out/cache/ast/v0.8.44/daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b.json new file mode 100644 index 00000000..d5814912 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "label": "DashboardController.php", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L1"}, {"id": "controller_dashboardcontroller_dashboardcontroller", "label": "DashboardController", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L24"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_dashboardcontroller_dashboardcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L27"}, {"id": "controller_dashboardcontroller_dashboardcontroller_clinic", "label": ".clinic()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40"}, {"id": "controller_dashboardcontroller_dashboardcontroller_doctor", "label": ".doctor()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160"}, {"id": "controller_dashboardcontroller_dashboardcontroller_secretary", "label": ".secretary()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L255"}, {"id": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "label": ".secretaryDoctorDashboard()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284"}, {"id": "doctorsecretary", "label": "DoctorSecretary", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284"}, {"id": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "label": ".secretaryClinicDashboard()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339"}, {"id": "clinic", "label": "Clinic", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "useractivecontextrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "patientrecordrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "patientsessionrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "doctorsecretary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "doctorsecretaryrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "smswalletservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_dashboard_controller_dashboardcontroller_php", "target": "controller_dashboardcontroller_dashboardcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L24", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L25", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L27", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_clinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_clinic", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_clinic", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_clinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L40", "weight": 1.0, "context": "return_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_doctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_doctor", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_doctor", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_doctor", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L160", "weight": 1.0, "context": "return_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_secretary", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L255", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretary", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L255", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretary", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L255", "weight": 1.0, "context": "return_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "target": "doctorsecretary", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L284", "weight": 1.0, "context": "return_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller", "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "target": "clinic", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L339", "weight": 1.0, "context": "return_type"}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretary", "target": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L269", "weight": 1.0}, {"source": "controller_dashboardcontroller_dashboardcontroller_secretary", "target": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Dashboard/Controller/DashboardController.php", "source_location": "L278", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L49", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L50", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L51", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L52", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L55", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getOneOrNullResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L58", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L75", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L88", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L88", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L88", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getBalance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L132", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "countUnique", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L133", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "sumRevenue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L134", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L138", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L139", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "isActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L140", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "getClinicLogo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L141", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_clinic", "callee": "count", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L144", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L166", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L170", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L171", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L176", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L176", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getOneOrNullResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L206", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L220", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L220", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L220", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getBalance", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "countUnique", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "sumRevenue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L229", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L234", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_doctor", "callee": "getDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L235", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L259", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L263", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L267", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L272", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "findActiveBySecretaryForDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L274", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L276", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretary", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L281", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L286", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getPermissions", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L287", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L290", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L291", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L292", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L293", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L301", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L301", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L301", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L323", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L326", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L327", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "callee": "getDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L328", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "findActiveBySecretaryForClinic", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L341", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L343", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getPermissions", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L346", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L349", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L350", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L351", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L352", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "findDoctorsBySecretaryInClinic", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L354", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L360", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L361", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L361", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L361", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "setParameters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "createQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L390", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L393", "receiver": null}, {"caller_nid": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php", "source_location": "L394", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff.json b/graphify-out/cache/ast/v0.8.44/df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff.json new file mode 100644 index 00000000..6b2680e3 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smsmessagetemplate_php", "label": "SmsMessageTemplate.php", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L1"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate", "label": "SmsMessageTemplate", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L12"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L73"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_getid", "label": ".getId()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L82"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_gettag", "label": ".getTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L83"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_gettitle", "label": ".getTitle()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L84"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_getbody", "label": ".getBody()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L85"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_getvariables", "label": ".getVariables()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L86"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_getupdatedat", "label": ".getUpdatedAt()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L87"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_settitle", "label": ".setTitle()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L89"}, {"id": "self", "label": "self", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L89"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_setbody", "label": ".setBody()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L90"}, {"id": "entity_smsmessagetemplate_smsmessagetemplate_toarray", "label": ".toArray()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L92"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smsmessagetemplate_php", "target": "mapping", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smsmessagetemplate_php", "target": "smsmessagetemplaterepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smsmessagetemplate_php", "target": "entity_smsmessagetemplate_smsmessagetemplate", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L12", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L73", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_getid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L82", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_gettag", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L83", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_gettitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L84", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_getbody", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L85", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_getvariables", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L86", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_getupdatedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L87", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_settitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L89", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate_settitle", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L89", "weight": 1.0, "context": "return_type"}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_setbody", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L90", "weight": 1.0}, {"source": "entity_smsmessagetemplate_smsmessagetemplate_setbody", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L90", "weight": 1.0, "context": "return_type"}, {"source": "entity_smsmessagetemplate_smsmessagetemplate", "target": "entity_smsmessagetemplate_smsmessagetemplate_toarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L92", "weight": 1.0}], "raw_calls": [{"caller_nid": "entity_smsmessagetemplate_smsmessagetemplate_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L79", "receiver": null}, {"caller_nid": "entity_smsmessagetemplate_smsmessagetemplate_settitle", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L89", "receiver": null}, {"caller_nid": "entity_smsmessagetemplate_smsmessagetemplate_setbody", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php", "source_location": "L90", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42.json b/graphify-out/cache/ast/v0.8.44/e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42.json new file mode 100644 index 00000000..70230a7e --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_service_md", "label": "doctor-service.md", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L1"}, {"id": "api_doctor_service_doctor_service_api", "label": "Doctor Service API", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L1"}, {"id": "api_doctor_service_get_api_v1_doctor_services", "label": "GET `/api/v1/doctor-services`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L7"}, {"id": "api_doctor_service_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L13"}, {"id": "api_doctor_service_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L18"}, {"id": "api_doctor_service_get_api_v1_admin_doctor_services", "label": "GET `/api/v1/admin/doctor-services`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L37"}, {"id": "api_doctor_service_query_parameters_43", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L43"}, {"id": "api_doctor_service_response_200_51", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L51"}, {"id": "api_doctor_service_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L60"}, {"id": "api_doctor_service_post_api_v1_admin_doctor_service", "label": "POST `/api/v1/admin/doctor-service`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L68"}, {"id": "api_doctor_service_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L74"}, {"id": "api_doctor_service_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L93"}, {"id": "api_doctor_service_errors_96", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L96"}, {"id": "api_doctor_service_patch_api_v1_admin_doctor_service_id", "label": "PATCH `/api/v1/admin/doctor-service/{id}`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L105"}, {"id": "api_doctor_service_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L111"}, {"id": "api_doctor_service_response_200_118", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L118"}, {"id": "api_doctor_service_errors_121", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L121"}, {"id": "api_doctor_service_delete_api_v1_admin_doctor_service_id", "label": "DELETE `/api/v1/admin/doctor-service/{id}`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L130"}, {"id": "api_doctor_service_response_200_136", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L136"}, {"id": "api_doctor_service_errors_141", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L141"}, {"id": "api_doctor_service_bulk_import_export", "label": "Bulk import / export", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L150"}, {"id": "api_doctor_service_sorting_by_id", "label": "Sorting by id", "file_type": "document", "source_file": "docs/api/doctor-service.md", "source_location": "L156"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_service_md", "target": "api_doctor_service_doctor_service_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_get_api_v1_doctor_services", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L7", "weight": 1.0}, {"source": "api_doctor_service_get_api_v1_doctor_services", "target": "api_doctor_service_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L13", "weight": 1.0}, {"source": "api_doctor_service_get_api_v1_doctor_services", "target": "api_doctor_service_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L18", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_get_api_v1_admin_doctor_services", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L37", "weight": 1.0}, {"source": "api_doctor_service_get_api_v1_admin_doctor_services", "target": "api_doctor_service_query_parameters_43", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L43", "weight": 1.0}, {"source": "api_doctor_service_get_api_v1_admin_doctor_services", "target": "api_doctor_service_response_200_51", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L51", "weight": 1.0}, {"source": "api_doctor_service_get_api_v1_admin_doctor_services", "target": "api_doctor_service_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L60", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_post_api_v1_admin_doctor_service", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L68", "weight": 1.0}, {"source": "api_doctor_service_post_api_v1_admin_doctor_service", "target": "api_doctor_service_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L74", "weight": 1.0}, {"source": "api_doctor_service_post_api_v1_admin_doctor_service", "target": "api_doctor_service_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L93", "weight": 1.0}, {"source": "api_doctor_service_post_api_v1_admin_doctor_service", "target": "api_doctor_service_errors_96", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L96", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_patch_api_v1_admin_doctor_service_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L105", "weight": 1.0}, {"source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", "target": "api_doctor_service_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L111", "weight": 1.0}, {"source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", "target": "api_doctor_service_response_200_118", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L118", "weight": 1.0}, {"source": "api_doctor_service_patch_api_v1_admin_doctor_service_id", "target": "api_doctor_service_errors_121", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L121", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_delete_api_v1_admin_doctor_service_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L130", "weight": 1.0}, {"source": "api_doctor_service_delete_api_v1_admin_doctor_service_id", "target": "api_doctor_service_response_200_136", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L136", "weight": 1.0}, {"source": "api_doctor_service_delete_api_v1_admin_doctor_service_id", "target": "api_doctor_service_errors_141", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L141", "weight": 1.0}, {"source": "api_doctor_service_doctor_service_api", "target": "api_doctor_service_bulk_import_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L150", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_service_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_category_import_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L153", "weight": 1.0}, {"source": "api_doctor_service_bulk_import_export", "target": "api_doctor_service_sorting_by_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-service.md", "source_location": "L156", "weight": 1.0}], "input_tokens": 0, "output_tokens": 0} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8.json b/graphify-out/cache/ast/v0.8.44/f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8.json new file mode 100644 index 00000000..78e39b74 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "label": "TagController.php", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L1"}, {"id": "controller_tagcontroller_tagcontroller", "label": "TagController", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L15"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_tagcontroller_tagcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L18"}, {"id": "controller_tagcontroller_tagcontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L22"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L22"}, {"id": "controller_tagcontroller_tagcontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31"}, {"id": "controller_tagcontroller_tagcontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L50"}, {"id": "controller_tagcontroller_tagcontroller_delete", "label": ".delete()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L68"}, {"id": "controller_tagcontroller_tagcontroller_adminlist", "label": ".adminList()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L81"}, {"id": "controller_tagcontroller_tagcontroller_slugify", "label": ".slugify()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L108"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "tag", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "tagrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_tag_controller_tagcontroller_php", "target": "controller_tagcontroller_tagcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L15", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L16", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L18", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L22", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L22", "weight": 1.0, "context": "return_type"}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_tagcontroller_tagcontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L31", "weight": 1.0, "context": "return_type"}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L50", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L50", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_tagcontroller_tagcontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L50", "weight": 1.0, "context": "return_type"}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_delete", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L68", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_delete", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L68", "weight": 1.0, "context": "return_type"}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_adminlist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L81", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_adminlist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L81", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_tagcontroller_tagcontroller_adminlist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L81", "weight": 1.0, "context": "return_type"}, {"source": "controller_tagcontroller_tagcontroller", "target": "controller_tagcontroller_tagcontroller_slugify", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L108", "weight": 1.0}, {"source": "controller_tagcontroller_tagcontroller_create", "target": "controller_tagcontroller_tagcontroller_slugify", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Tag/Controller/TagController.php", "source_location": "L41", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_tagcontroller_tagcontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L25", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_list", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L25", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_list", "callee": "findActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L25", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_list", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L26", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L35", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L35", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L36", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L38", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L44", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L47", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_create", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L47", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L54", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L56", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L59", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L60", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L60", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L61", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "setSlug", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L61", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L64", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L65", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_update", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L65", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_delete", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L72", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_delete", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L77", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_delete", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L78", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L85", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L86", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L89", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "strtoupper", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L93", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_adminlist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_slugify", "callee": "mb_strtolower", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_slugify", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_slugify", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L112", "receiver": null}, {"caller_nid": "controller_tagcontroller_tagcontroller_slugify", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php", "source_location": "L113", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/ast/v0.8.44/f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079.json b/graphify-out/cache/ast/v0.8.44/f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079.json new file mode 100644 index 00000000..c8d14393 --- /dev/null +++ b/graphify-out/cache/ast/v0.8.44/f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079.json @@ -0,0 +1 @@ +{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smslog_php", "label": "SmsLog.php", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L1"}, {"id": "entity_smslog_smslog", "label": "SmsLog", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L9"}, {"id": "entity_smslog_smslog_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L65"}, {"id": "entity_smslog_smslog_settemplateuuid", "label": ".setTemplateUuid()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L76"}, {"id": "self", "label": "self", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L76"}, {"id": "entity_smslog_smslog_gettag", "label": ".getTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L77"}, {"id": "entity_smslog_smslog_settag", "label": ".setTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L78"}, {"id": "entity_smslog_smslog_toarray", "label": ".toArray()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L80"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smslog_php", "target": "mapping", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smslog_php", "target": "smslogrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smslog_php", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_sms_entity_smslog_php", "target": "entity_smslog_smslog", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L9", "weight": 1.0}, {"source": "entity_smslog_smslog", "target": "entity_smslog_smslog_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L65", "weight": 1.0}, {"source": "entity_smslog_smslog", "target": "entity_smslog_smslog_settemplateuuid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L76", "weight": 1.0}, {"source": "entity_smslog_smslog_settemplateuuid", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L76", "weight": 1.0, "context": "return_type"}, {"source": "entity_smslog_smslog", "target": "entity_smslog_smslog_gettag", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L77", "weight": 1.0}, {"source": "entity_smslog_smslog", "target": "entity_smslog_smslog_settag", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L78", "weight": 1.0}, {"source": "entity_smslog_smslog_settag", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L78", "weight": 1.0, "context": "return_type"}, {"source": "entity_smslog_smslog", "target": "entity_smslog_smslog_toarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Sms/Entity/SmsLog.php", "source_location": "L80", "weight": 1.0}], "raw_calls": [{"caller_nid": "entity_smslog_smslog_construct", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php", "source_location": "L67", "receiver": null}, {"caller_nid": "entity_smslog_smslog_construct", "callee": "Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php", "source_location": "L67", "receiver": null}, {"caller_nid": "entity_smslog_smslog_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php", "source_location": "L73", "receiver": null}]} \ No newline at end of file diff --git a/graphify-out/cache/stat-index.json b/graphify-out/cache/stat-index.json index d473f2de..0ea49514 100644 --- a/graphify-out/cache/stat-index.json +++ b/graphify-out/cache/stat-index.json @@ -1 +1 @@ -{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3082,"mtime_ns":1782645766148245683,"hash":"d1fe8db3ea082855e8c562819934d2719debd0d5541e7eb5853d87d13cc47459"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105233,"mtime_ns":1782645766235591855,"hash":"a2030203ccca39bf435675e884e805a2bc3db13ddfded1d346ac649bab6deeab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":5927,"mtime_ns":1782583543657239761,"hash":"02683252b3c23dc3005af00fc6a42cbc360a306c799a88ee722cf1560ba22da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":3004,"mtime_ns":1782626301195816873,"hash":"b3ba50cb2690810d8fb010f0ede4cf92906376908208bf0093512752d72fed76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2261,"mtime_ns":1782728407180886172,"hash":"44bbdc99c5e4a3a3c3645f2d400419bae158aef97f432ecf3340eb902c8deab7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":100417,"mtime_ns":1782750165340121553,"hash":"5c94ca6ec5ce79cd14d07da357d72b77bcaba0e1f311e187cd3c8eeb2ab4c46b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":17714,"mtime_ns":1782728407188976018,"hash":"213d1b93ba08882b32a47b70be27553aae4d53bf92fcdb66d2c2876e33f0eb6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":15723,"mtime_ns":1782728407189591731,"hash":"36e9472f0cdcf7178c898629a676f50452d0572c9dfc7f6c0d3f91a602716a0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":9871,"mtime_ns":1782728407190164318,"hash":"199c0bce6c58ae43bfd76f426a9b879985958641a5730886b73f925b79e85395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2925,"mtime_ns":1782728407190402153,"hash":"c59fdb6d3f05bdb6cd558bb74e701897aa14947acafadb64943469c19fe696f0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2953,"mtime_ns":1782650883604011152,"hash":"45b9c56571e20dfc0cabc789b083e2099273efbe5c0a589268a7f5e35106e631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3519,"mtime_ns":1782650883602991274,"hash":"ac7a64333676e95bd5f9a78c22fe0f83fcad6bf96d65ae2605685ab8c01ed453"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":7660,"mtime_ns":1782728407190649529,"hash":"293ee69d87a2ee0421f6a4f73ef854b9fd7d261642ac34795a453438ac762b39"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1834,"mtime_ns":1782728407190939073,"hash":"0e08a53cd50f1fa75c2998ce2d39400cf116f1e7d5632015fefd589ca730e771"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":36120,"mtime_ns":1782728407191234283,"hash":"d7f98b20db8f66beaae6688b6a84f1692b43437de6e85a3808774743694f3c80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7871,"mtime_ns":1782728407191857954,"hash":"fc3c53bab05acd5e3c477e5d05c90964c4e7172f3afe5c96d11376a85510b1d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4972,"mtime_ns":1782728407192144123,"hash":"83e9341f771214eaab94dd7c4f0aa2de0e5c0528a0fa5eb4927659f94bc7ddf0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1160,"mtime_ns":1782652951356493481,"hash":"1c60c30e2800176bb2dde9730607d081f2fa1a05f8f6ee6e917ad256bcfa73cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":13703,"mtime_ns":1782728407192799169,"hash":"7226845540da9c2d9121eb7e25eab910b5d60d45d0f5dc14321ce9379b079967"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":5807,"mtime_ns":1782728407193826801,"hash":"26fd73c5de681031611a56b0e9a1140cf3b4c1088059ba954e7c3c8a344392de"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5562,"mtime_ns":1782650883613744390,"hash":"5e6a312d48b1efacb7e4c14b87a658d1ad64bf0d3aefa5bdb2008011cb3b175b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1776,"mtime_ns":1782728407194246845,"hash":"1be28d02d6f241500cc7a55f1a597962d80b5f72c814c9308fd6811029aef714"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12311,"mtime_ns":1782728407194604639,"hash":"d192f3609f782986a1c36a6236066c503364b8d1bb7312c928e7c9ff1a2f5d80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10193,"mtime_ns":1782728407194937600,"hash":"9e968ad47c34e34775e6793301147eaf9768692a8f254ceed37152207ae3d202"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5434,"mtime_ns":1782728407195142351,"hash":"44d986e38a0aaff4ff36d621205c7361769814ac64e5e559dfeb02d2e63b09d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":15449,"mtime_ns":1782728407195387478,"hash":"38d8db77331e6ccdf9e78a54f5f223cd74cd1b83880d40ececcf4cce392472cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3369,"mtime_ns":1782319753499631658,"hash":"91d6de5e3c6f14955c0b99c55dafeab4daf8838256eb3d9954fe577f6051c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":1026,"mtime_ns":1782650883609343293,"hash":"694f1f497f5a3a1095f2949eacd68694eb7e8d6536abcd1bb61e7d788abed158"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1836,"mtime_ns":1782650883608855500,"hash":"1b50a1ed1a3d72be73df9bce2bcb010e2b90888bc7daa0a312ede4d181327631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2533,"mtime_ns":1782319853828508658,"hash":"50306f63113ee6dfa84443fe08d91f9fb9b17b7b9f86a85539bcd3a05215c51a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18227,"mtime_ns":1781522583733722442,"hash":"d67fce94d5e7ecfa0222a05f525586c96c9c280bcbee7605865b114594201bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37753,"mtime_ns":1782728407195775022,"hash":"2c2f4c831d7ede2101b72277fc7c20ad06ac22dcd23045b8134aca7471278238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16811,"mtime_ns":1782728407196033316,"hash":"dcd2dd96c11cd47f033dbb41718dde4b0f7fa2a2110f25ba4804b33e37e331e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5470,"mtime_ns":1782650883611537550,"hash":"f42a0409b492abf55f1ed704e65e2273b1a9b7424abf0d2bd9c9507ea9345747"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7714,"mtime_ns":1782728407196368484,"hash":"3b22e183b3ec75a81be9e5095a62c8597b792a7be8b588e084f50c3f3ae0c2e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5406,"mtime_ns":1781522583732540897,"hash":"953781115f6180a8b4d33de1d600d1a64d9dbf949a93069a82f1d8b28a14a5dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":25368,"mtime_ns":1782728407196781029,"hash":"457ca31fba8263cb58b3c47f214164fd28094d3074e6c57f8d4bdc0a0728a0bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1960,"mtime_ns":1782728407197029697,"hash":"3835c0d26cf2af6937ccb1990a2a097e0696bc03c144ca9863867906de1b3a94"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":992,"mtime_ns":1782743240249498742,"hash":"3b2fcf35ae459cfe82147916f43a6da872819e946938e0cd330a596a226065a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10195,"mtime_ns":1781522583734100069,"hash":"64770748d202a36f7ebd57f5fe725201462f80835839fc0dee471cadf8e663bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":5855,"mtime_ns":1781089230145855904,"hash":"a9c471a92b627484e74df8e11ebc9f6db21a05c249df2f67eb74a39477204e4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15797,"mtime_ns":1782728407197647952,"hash":"0adb531514bb19b3fabe1e679468f731f00cc6d34a2edbb9e887a18c94447bc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":7041,"mtime_ns":1782728407197911662,"hash":"e99aa5f70fa1eee35e78e90f7ea8e8e5f4bc80b77d2de0888eafd91b3ef0fcf6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":31721,"mtime_ns":1782728407198201330,"hash":"6a6342e4ae451579ce88f5c0bedce9415ad95ce71406a9ff24117096264bbdad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5647,"mtime_ns":1782728407198542249,"hash":"baea6fcd3343ee16bf9c045dc65f6cf06e022b157b485144dd459f385f9ee5c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":5989,"mtime_ns":1782750018514940514,"hash":"5f7ed3260ea0be9c83ebc1afec10ca24dd4d6118a7079299105fed545eadb817"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1429,"mtime_ns":1782728407198901168,"hash":"4e4f8c687212fb476a9672747ed28d3a827e9d01ab864b275e18c1a5cd37f659"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":429,"mtime_ns":1781012928742348313,"hash":"0ea6fa1641009afe5a0f6ca33dd6afc4e224978bd7cbfd4be8865a6ac52c9c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3800,"mtime_ns":1782750047532974461,"hash":"c9214091aa37726eb1cb7109234bd2a24ce6cd77674d50ec83fc188cad819a0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3293,"mtime_ns":1782728407199154920,"hash":"9051e2d1dd67a0d6fb8a70504e7bbbc79f891e098a4d836d0e8f9ae6ff7639aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":22783,"mtime_ns":1782728407199386297,"hash":"64462e603b4569268e25d7f6a989f1b4d9b598a7613405a5d5d0165df2b477fc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4881,"mtime_ns":1782650883605327864,"hash":"c43aa389121312d1fe2ba9639e3a6a0ba5fc21f78d0784adb723c26e3afbc0fa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2153,"mtime_ns":1782650883604545320,"hash":"7a7937df6b8df47196e035544c1ec78a11847a0a1688114bdb5265adde8d32c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4359,"mtime_ns":1782650883604952613,"hash":"bb8b2b8ccda54b99bd5ab0bd937dc29d4ac840195e3f89fcfc286b5429b2b863"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":3785,"mtime_ns":1782728407199666132,"hash":"57721807456fc1a9e0c2df0dadb2b4c45cff8a7c2e650c33ff1e4edc22ec9eb0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":41170,"mtime_ns":1782728407200475887,"hash":"973a496476356f34610a5a3167495b0d91dec8c49306f38fae4480267ae9f378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":21984,"mtime_ns":1782728407200758181,"hash":"681dfdf19f3a7a8d0d86ddefff60f30fb81d1a9c1024137c0f9ba3af6c658fe4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5417,"mtime_ns":1782650883614592767,"hash":"ce5a938bccaf71572af189a1b92ee7e21baa9865c299dd261e3f18180b21b620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":882,"mtime_ns":1781551622412449131,"hash":"2ec793b26f528520f7f80ce26684ea383b09eb5081e94900a469447ee3091d8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":10070,"mtime_ns":1781522583736830703,"hash":"581abaa41c138ece2fb0796f9ed8e43158f848aad1efa337c5076f8a290f6b72"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5203,"mtime_ns":1782728407201032933,"hash":"7a89e177bf272aa6e20c29d8e39c66c4e9f761daa1875a073525369cebc48193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":5327,"mtime_ns":1782728407201262976,"hash":"bac031cd09fb91bf156e250accd69b5bb83f2af7738e8394852e746f3152dbb2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":23112,"mtime_ns":1782728407201510186,"hash":"b6f3ad0ae1b555833b87edf0398a96200295160b1c6a57c26e3f751274892c9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5470,"mtime_ns":1782728407201776813,"hash":"a0c5e8cc2f0a3597518275c45fe403a188bbfe210fa75da65eee3ebeef594963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4252,"mtime_ns":1782650883606160908,"hash":"36b84f9a63c52cdf4150c0848c4a3fd28a0c7a1aba6bda3f147c3dd9da2f969c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":3099,"mtime_ns":1782728407202004397,"hash":"d2acafb91806e555535cdbddd5151e71b71561cddf2d0872461285e6d1489b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2270,"mtime_ns":1782728407202173607,"hash":"9c617a929f6ed0595a371ee05d2e9d19d204ed3eb80bd0df9fe9de71fbf76e2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":974,"mtime_ns":1782728407202497901,"hash":"12fdfe848f6eb143b87b09645122480b33a778bdf2d9179fd9d45c27540a23a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9417,"mtime_ns":1782728407202855820,"hash":"3e172a36ac3e336ad3501c5defbd9ec894334ba4f7f720b04d4515bd6703b939"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5579,"mtime_ns":1782747822711536821,"hash":"cc3e848cbd0237379c1c26afed58de7230b93b095d87ca672ffc16e88a7bac40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1559,"mtime_ns":1782728407203289865,"hash":"4c05cb260495d4e38a1c9f13163eb64ee0cf264d95c6f87994cc03e4508c285c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4598,"mtime_ns":1782750061879006297,"hash":"d2a46876b0e6e0cc5cf9a88c3ea9067de7a0f64df5bc59099c215c14a123a305"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11962,"mtime_ns":1782110309289351872,"hash":"6a1abec43951233b9e88021712f1159d043eb14f47473e5bb6fd41105a8267e5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":2985,"mtime_ns":1782650883607542538,"hash":"752ea776d88a216c309798cf1df356d28dac035914ea78f0af679025c38060ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":3865,"mtime_ns":1782650883608436957,"hash":"b91fb21ae3b217e83df16601ebac5b3bb369854fbc2fd4aae7e2430e4a417f7f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":4085,"mtime_ns":1782650883608045581,"hash":"9c1ebef6b3ee3a4724e94af555854df18a8d5f2bba6f524781a94478123be0dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2886,"mtime_ns":1782749956405975569,"hash":"8e10ac183f88465faeecb560f4dfedb97a9faacf46758d37dae0a268df96d093"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":2234,"mtime_ns":1782749977746062400,"hash":"e2910a9314c0a63d60a4d5df210a421d12149e64db2550cb58bf021bb84f19c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6151,"mtime_ns":1781636247076758267,"hash":"e6cc213607cc6d3d56450b73f04c696e4f2ad5adfc6eb3ebbf85395867f06552"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4057,"mtime_ns":1782728407203534324,"hash":"a21caf7417e2a32180b91b4fe18ac8245f2b0aeb8887104b2739771151a37350"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3806,"mtime_ns":1782728407203839326,"hash":"0121bf60210628bcbb1cbe89419eddfd71b29c65debdbd3dbce51e2d2632c75b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4028,"mtime_ns":1781522583736261243,"hash":"59af02e5966b18ea820af39e59750ddaf6cb2a569369fabb64b15e50ec8aef27"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9546,"mtime_ns":1782650883615317561,"hash":"d65393c833dec86f7dae8413a72b3a6cd0cc75f3e7faf36bb02995d72b463bb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":423,"mtime_ns":1782729422588693047,"hash":"53fac6b4a0917eecde4dc3efc021cceca3d48600d9cfb58a3d4c946135751c66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":29605,"mtime_ns":1782750435771295635,"hash":"6b0c84481084c4920b085db292f903c4d296f1bc05b91e906e5917ad517660f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16574,"mtime_ns":1782728407106610964,"hash":"540be837def81a7c24a001654fde543de78f168ba34ed839c6e6fd597ea55ed6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":16822,"mtime_ns":1782728407107114384,"hash":"7b39650f7266519461983913a0c78e186275d036101a827049dd6f8c3574707e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18998,"mtime_ns":1782728407107527803,"hash":"3ef75b524c4a8eb4748ae652659d5849cf3a6359015216d8f24b3a0f555efc6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":10078,"mtime_ns":1782728407107896681,"hash":"c9f6afebfd6b6f7a7e55bf1d14c8123f9230a99fc566c63aa9cb4d01b6204324"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":6228,"mtime_ns":1782728407108299892,"hash":"d03260630a54476e8c29c60a2eb6540abb203d81d7656a95fbb1381344ad1a00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3285,"mtime_ns":1782839237808648869,"hash":"8db2c22f2fafdb62913657534ac8b49778de786e78cd200e4a35d5cef3cee0c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13600,"mtime_ns":1782728407108632102,"hash":"9b489729903535dc83ff137376247c057a7b537da0e8ad41d7a62c7163119c63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14363,"mtime_ns":1782839237808906660,"hash":"de0f23dce595f64032e3422ab8ec643d7b27948d1b3a846aa718d1fad6df87dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5355,"mtime_ns":1782839237808473953,"hash":"c6d9fbd080fb7897206b3d9dc7f5b49cf347fe29ca6428e30e9e9948727ccabc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":11302,"mtime_ns":1782728407109555775,"hash":"199db5f2b3eb3e52fc2e42ce726e34b0b1cfa288085076a5eb2350605e23b48c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1782728407110670616,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":21174,"mtime_ns":1782728407111252662,"hash":"5885967c5170bf2400f9732554f43375edc13e81715385df337db7eeea45295f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":10497,"mtime_ns":1781520442059899034,"hash":"06548919f6a826850f8e2b392875bb773a3dd1bfe0c670321e68b8fff30c132b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9976,"mtime_ns":1782728407112458962,"hash":"ad88d08fd6960cb9bfd932b91def2ad395a50c391f7692e9ec30fa4dab681722"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":13363,"mtime_ns":1782367200506345625,"hash":"ad782caaf9d874097e138f7407bbe018dfb48d8860d052eafcedfafd04a9b85b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4612,"mtime_ns":1782839237808248370,"hash":"a024e860e973def0803da5f84669451313079c9b087f2dc5e185ef1f676cd033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":2788,"mtime_ns":1782839237809069869,"hash":"44d523853c3cf5679d907526a3b63b6fed530e55195a26cf4f433b4bfdc80b64"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/entrypoint.sh":{"size":1468,"mtime_ns":1782633219516893494,"hash":"48c33a7c55c256a65ba4c089893e1112aea5b1320c9dc6b46f4eadb865b68ae4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/frontend-domains.json":{"size":2348,"mtime_ns":1782410142646593892,"hash":"dc12d68e32830d446995ea2a8cf98fe0bc24e15d4b6b0b27dd5b97dc84b06568"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/gen-cors-env.php":{"size":1941,"mtime_ns":1782410159219136761,"hash":"cee724b4cbfc04771874ccdf454cb5bf04dcf63d16955f9e11357390e3a65c6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/healthcheck.sh":{"size":443,"mtime_ns":1782647901237410548,"hash":"b4d2a6f75f334c832e9a015b4e296f3fb9210f128b2b1b40bfe74abf6e6babc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628133044.php":{"size":1747,"mtime_ns":1782728407177086438,"hash":"5c24097f68a7696b4ae58ba6df68b6ace4f508b1f0ebf3e964fff23661c8ea0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628134241.php":{"size":1159,"mtime_ns":1782728407177374107,"hash":"c31886c1f10dd25296b56fb7ba336f1fc45aa45d6627ab6bdb148f18d49872ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628152738.php":{"size":1873,"mtime_ns":1782728407177652192,"hash":"d7a00a9e505a45fe1056cde539a8cbefcb42f67a0c3755427d77ba12959e0c4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153625.php":{"size":882,"mtime_ns":1782728407177952152,"hash":"b314e4f194586cb9b4037fb48ab8400a307ce428def8108b94616a263e24e238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153855.php":{"size":1146,"mtime_ns":1782728407179127785,"hash":"1ec80db45af56adf7be93c412e0165c70fb629dde2ccc09b06a3452a66c52c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628165710.php":{"size":809,"mtime_ns":1782728407179735539,"hash":"cca05740bf26d1540b361283f5a140aeb446bd717250615b7ed040977788dab6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628173151.php":{"size":1639,"mtime_ns":1782728407180333627,"hash":"b8bbe9ad2ce3faae637534db20bfc455e288bc2c5fb3a1b9a10f4a29db2432aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/CreateAdminCommand.php":{"size":2428,"mtime_ns":1782649564990017265,"hash":"2fd1cffeb4d8299abb1a5fda3d9f29a08c882ff6e66781dffbc038ff675906c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceCleanupService.php":{"size":1874,"mtime_ns":1782728407197355450,"hash":"19f366c81466bfebfd37cd2310f8602b243cf5111e51308892e196b7d5a7dc4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ApiTestCase.php":{"size":2923,"mtime_ns":1782728407205043418,"hash":"6ec92ce7ac31774fec6ceb5e33a073d6cdbe06044221f38e4939f99270fe8bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentExpiryServiceTest.php":{"size":2163,"mtime_ns":1782728407205393295,"hash":"5586072347e23a24fddaa187efeb93d702697b7cdd1a399909239684cf371372"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentSettingsListOwnershipTest.php":{"size":1592,"mtime_ns":1782728407205827923,"hash":"1ffb3b0a89f531658a75520df810efc7e18022e106a75d885d92986d62ba74e7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/BookingScopeTest.php":{"size":1653,"mtime_ns":1782728407206108967,"hash":"395161c96b8a660dab252a12c063090de94131b66d672c3b8804d70800327451"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/DateOverrideOwnershipTest.php":{"size":1259,"mtime_ns":1782728407206489928,"hash":"10dfd3691f16464f1d16a317942a53046f5369260a74ce133960d1b1f30218aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/ScheduleOwnershipTest.php":{"size":1721,"mtime_ns":1782728407206779055,"hash":"f935dde55aaa34b8c10780019e1c8ee7f5733c602874cc951411737dc9691329"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/SlotUniquenessTest.php":{"size":2475,"mtime_ns":1782728407206954431,"hash":"0168f3c381e9da2663e2cf118fd67f5b90d2ea6e4e96433e3d05a567248961f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Audit/LowTierFixesTest.php":{"size":1517,"mtime_ns":1782728407207202432,"hash":"6d65ac794b959d7b177dfd5ed9792082e5f79a073b0cda79be8503b689edc907"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/RefreshTokenTest.php":{"size":1924,"mtime_ns":1782728407207460101,"hash":"745716b0c8627a1f72fed9305b2dc70af84c14ed015ff3341bd3c6422ea63c87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/SendCodeMobileRateLimitTest.php":{"size":1421,"mtime_ns":1782728407207651102,"hash":"f069f1c427ffbeb082d3777ae8da34e031e940e4a0c79e5da4e80708345890aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimAmountBoundsTest.php":{"size":1863,"mtime_ns":1782728407207878645,"hash":"0b7551406b5b0c2fe47812614e3edbf359b72ef3c0f16b12466e387c5bdbb041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListNPlusOneTest.php":{"size":1782,"mtime_ns":1782728407208062397,"hash":"dcf666e9d1a149bf85e0ef7869083bceec48bd8ba95958292878d73f7e330467"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListPaginationTest.php":{"size":1215,"mtime_ns":1782728407208282107,"hash":"3d81e096e779dc685eed5920d7fef419ebf2c96e96794ae8d6222daeb0dea7e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemDeleteCleanupTest.php":{"size":1598,"mtime_ns":1782728407208527691,"hash":"f9809dce56ba099731d9fbf6e1da781c18acc49a758537002868a7db3efad7b1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemStaffOwnershipTest.php":{"size":1464,"mtime_ns":1782728407208738276,"hash":"e8b808423b34ee5471e7d00407f94ed22593e06ed6c4e674f92e972ed0e8718f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Database/UniqueConstraintsTest.php":{"size":2595,"mtime_ns":1782728407208978278,"hash":"aeaae84730fbdecfb8337f25283653d3867d3cf50332e7bea917c946672c97cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/ClinicDoctorListNPlusOneTest.php":{"size":2457,"mtime_ns":1782728407209223988,"hash":"705820b9d1590cf2f642e6ee7391a651536104c92acf39f261e2df71516ed55a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorAddressOwnershipTest.php":{"size":1313,"mtime_ns":1782728407209479490,"hash":"8fde8b4d6db03191fc8d650bf86fa6962956b504013b76a55c4e5ae791e47c38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctrine/RepositoryClassMappingTest.php":{"size":1573,"mtime_ns":1782728407209727575,"hash":"5289139754fae16d85a09fcff134ceef249968876f029c180f36b1c7d53bf5d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/DoctorInsuranceOwnershipTest.php":{"size":1486,"mtime_ns":1782728407209989701,"hash":"9231aaeffd13bf27869e74186679ddd38d1f6ebc9c52d36a8dad9b589bea3ad0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/ServiceCoverageNPlusOneTest.php":{"size":3714,"mtime_ns":1782728407210225203,"hash":"dd8ffa7d6329453fa49a9403b95a13556ad08dd318c89733a202d9d6c8ecfa4f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/TenantInsuranceCleanupTest.php":{"size":3021,"mtime_ns":1782728407210448121,"hash":"986643979f19f6a7ee71127782524852eb9eb163b77db793253e95b8df534675"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/PaymentCallbackAmountTest.php":{"size":3356,"mtime_ns":1782728407210719081,"hash":"1b32d36a573652e1860ae2ceaf20ead7eee9cef0c204c9d4875ce8926849e278"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentListNPlusOneTest.php":{"size":3794,"mtime_ns":1782728407210931374,"hash":"473c67b119935570a66ab5e75cc36311f04ce314729e75bf44fd337bacbc4535"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentPaginationTest.php":{"size":1836,"mtime_ns":1782728407211216876,"hash":"7d11e7ba342faf3c69e5844c1adab2aa7583b201737d16e0724d9233d00ad1e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/RepresentationCommissionTest.php":{"size":2548,"mtime_ns":1782728407211506878,"hash":"26b9f23b2462b30adea512eeb07f92f4db597a60c0ed3610a4169bd22f7c6c26"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Secretary/SecretaryListNPlusOneTest.php":{"size":1592,"mtime_ns":1782728407211848922,"hash":"bce8c0d2597c3641885ba9322eb03bada116d979e3bd7a0b4c90d5208fdd620c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/FinancialBreakdownIntegrityTest.php":{"size":1173,"mtime_ns":1782728407212105424,"hash":"3e987494345d3a7c1cc90de7b27bfcac7bc45bb54e8fa0a7a3f790bdfa406aaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/SettlementListPaginationTest.php":{"size":957,"mtime_ns":1782728407212820054,"hash":"74501df43886dc66c5fe19f849549a2194644dc948d94856f97d0af17c0d179c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/WalletTransactionsPaginationTest.php":{"size":1087,"mtime_ns":1782728407213026555,"hash":"8df4dfce9a91d73297d88f22e047a4127fee2b00e2fe1bc8f43eed2ff805fae9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/ErrorCodesTest.php":{"size":1547,"mtime_ns":1782728407213280973,"hash":"bf392c01cd7a70c25efe7c4ad59ffdb4579b1216576d58393c3a965524360f0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Smoke/InfraSmokeTest.php":{"size":1444,"mtime_ns":1782728407213624767,"hash":"d8d4a8c5688d7ed7168570bfc39c3cf038e2c43324498dff3239f5668afa0a1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/doctrine_object_manager.php":{"size":479,"mtime_ns":1782728407213800685,"hash":"7a99fb0ab55d30b31cdebe923546775d6372a0aa6e731b409c37fb8f98671f5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-adapt-backend-audit.md":{"size":8798,"mtime_ns":1782728407083687268,"hash":"f7e83133c40658496827e06f6182a995ccaff35018d83b7ee8aa32aba25a03fb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-docker-production-hardening.md":{"size":13443,"mtime_ns":1782647901236299599,"hash":"74228033d085f739ed39f615762ad721c6b3678122d0afc3f988676c4b514589"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-symfony-deploy.md":{"size":18877,"mtime_ns":1782409236333930026,"hash":"a81d0aa4535ae4be51f69d47c5101f7a72415654ded3889e01f1baf98718715a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/full-backend-audit.md":{"size":11545,"mtime_ns":1782728407084760233,"hash":"448fb57a5fdadd9bb3176b1570c0421b6459bbf2a5bd69bd4154246ae0c61285"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/home-landing-copy-and-mobile.md":{"size":11823,"mtime_ns":1782728407085277028,"hash":"596043e27126b0500ddbd861f0e7a8c17681ca49b3381da382458f2bc2355b09"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/split-db-redis-to-coolify-resources.md":{"size":12357,"mtime_ns":1782632977626228125,"hash":"6d87685ede07fb029b01d211fa82bdb7311bde9eb31ee9869992e6c49da5c75f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/DEPLOY.md":{"size":11539,"mtime_ns":1782647901238565498,"hash":"39797d5439fd4fd0fd19ae7a5b033febf0fbf6b58d07fdd1750d3aa2799b9163"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/audit-backlog.md":{"size":19190,"mtime_ns":1782728407113021215,"hash":"63afb7aaff2eb3113700644ab9bbfa07562ccec38cba4c77c0f21cd9acb98706"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy/coolify.md":{"size":10378,"mtime_ns":1782410984792896284,"hash":"f1d06d336c14b8df1530ec41dd80021b40e7113be0895504f9dda70b112a1cdf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/SeoController.php":{"size":1860,"mtime_ns":1782728407203067196,"hash":"df1028d7b1b294928a318cc7c27de5ca99b00d583d81ef6f400494c22380b6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara.json":{"size":638,"mtime_ns":1782743447395127690,"hash":"337416608afe2e6e989bfd903bb5bca1e977e6f8eb5cc02ca05a46bbda53edc4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_build.sh":{"size":559,"mtime_ns":1782735663785720587,"hash":"d9b9232a0f115eb1d752c2b149a5224ea030fd04d3c92ab964d53a6701d5e0a7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_start.sh":{"size":1063,"mtime_ns":1782747838542662883,"hash":"c5d143014bb281d056f6c286cf66faa4894b059584cceeacd150b01648cbde52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-test-suite.md":{"size":19691,"mtime_ns":1782728407084188354,"hash":"73ad644cede4254811fab6f825750f127edb1b5f08b8bad25b99b85c097a9556"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-docker.md":{"size":14106,"mtime_ns":1782732118990034632,"hash":"1a5f6f8bba054ea974f99dc5c01aeb19ed1cf612c3fd18a700bc03beaded2b5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-php.md":{"size":13353,"mtime_ns":1782735439025822952,"hash":"39f30d7c6d20b1869f5f06b2b532071e94b264f4bddf248c3cf84c62159ed86c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara-php.md":{"size":10664,"mtime_ns":1782736008651392836,"hash":"65c93d7d9e14dd468b75c5c81dee1ae6438d267253e8ad295953d3746d68d250"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara.md":{"size":8919,"mtime_ns":1782732335270881309,"hash":"ade1392f7cf72c544736a765b03140858e45cc5f12a480cd03ba4628af17e84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260629161536.php":{"size":1115,"mtime_ns":1782749766472631367,"hash":"c0e9b10f345c3d894d27267c90618903fab9693fd4be3542a755fbed3787fcba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLog.php":{"size":1707,"mtime_ns":1782749711194459630,"hash":"5b3237552e7ae040e5a3b2a289e8fc0f0518a1df84553665ea214efd36c2321d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLogRepository.php":{"size":321,"mtime_ns":1782749721788872841,"hash":"467e207cc4ef518da9d34cbc907c3de3ffc355fcd67f30c3155fe38624853f8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/DbLogger.php":{"size":3546,"mtime_ns":1782749810227775663,"hash":"4d5328c774fe4619eb75f9de434173ae4a4b5ca53f7729383399b12c2a222805"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Admin/AdminLogsTest.php":{"size":1600,"mtime_ns":1782750195979032925,"hash":"a8f899cc061053e5664833c2ebcbf1fe2613c8d5b150973bb95e621750267c61"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/DbLoggerTest.php":{"size":1768,"mtime_ns":1782749879165982208,"hash":"48db5c733cc7e02a8a226fc4ed552cd5282c91d400dc72b32f3f122c127033bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/project-wide-logging.md":{"size":14450,"mtime_ns":1782749549958444881,"hash":"3970d300cb4b804fed477773b47b653edb7aa3754b8cefd0e3f7d31a49417e6f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryImportController.php":{"size":3511,"mtime_ns":1782843840412881578,"hash":"721aecace95083433388fa4205e063cb45867b202d5430f44c1b0bbb1faa4465"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Category/CategoryImportTest.php":{"size":3925,"mtime_ns":1782839178845925849,"hash":"03c15491170644124dd399b100bbac0982d3ffad86ccffa9a2b9f4076bfabaad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5124,"mtime_ns":1782844030493510597,"hash":"d7c221bd66dc2ed13630b80966c57f9f824126dfcff92928ea41a28441d30879"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":44977,"mtime_ns":1782843868773038823,"hash":"4f34d9f9f45c9a445f12116cf0ee77b9105dfe11673bb77f0595861febc7851e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/doctor_services.json":{"size":46716,"mtime_ns":1782843868777989827,"hash":"3a5610d926bb9581c868449c387e80feef104aec7c9bdc6ed39835e87c287015"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/provinces.json":{"size":4364,"mtime_ns":1782843868770610383,"hash":"c28e9c29f212ac946af73f8122b545bd3761766ebc2c8e0a47567ef6a9fc5197"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/specialties.json":{"size":18764,"mtime_ns":1782843868775505763,"hash":"9bcf8a9b8f83e159a290b14c13b17b485185812c9e53ef62df4e33f84b216e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Command/SeedCategoriesCommand.php":{"size":2775,"mtime_ns":1782843891881834765,"hash":"13a71e6dab76fcb921270b6e2f996145b78e3c09d69b38592612a879707d87dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Service/CategoryImporter.php":{"size":11150,"mtime_ns":1782843813843439598,"hash":"de00c98fc50b71185668d058a3f4bcba79db6ce8f9cf9d11bc4647fa24470a1c"}} \ No newline at end of file +{"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/assets/controllers.json":{"size":198,"mtime_ns":1781030172830093265,"hash":"c2038f4c739d4a1620199394a2ccfdd5c91ef846a0f81048388ffa7b65df091b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/composer.json":{"size":3082,"mtime_ns":1782645766148245683,"hash":"d1fe8db3ea082855e8c562819934d2719debd0d5541e7eb5853d87d13cc47459"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/bundles.php":{"size":991,"mtime_ns":1781030790602666616,"hash":"ffc97986a2386074ed8eb1b4b9dcbca2ffa7cc6b3600a6c37e3112d6be39e0f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/preload.php":{"size":184,"mtime_ns":1781009656090972900,"hash":"718612fb509259556db6202d93b5f3b1bd85a6be6d523cdc6fb1d81b569ce256"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/config/reference.php":{"size":105233,"mtime_ns":1782645766235591855,"hash":"a2030203ccca39bf435675e884e805a2bc3db13ddfded1d346ac649bab6deeab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/create_test_users.php":{"size":4062,"mtime_ns":1781168063674077630,"hash":"35e828a0495a0a4aaa7539781076edff3b0af2e88562ea0ae1299cfc17fa91b6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/city.json":{"size":48958,"mtime_ns":1760953552261818528,"hash":"4c321bdc22df2c9e02e37cb3c1a44d792710e94c53f0131f14e88f0ba60cfbf5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/doctor_services.json":{"size":42359,"mtime_ns":1781085019042251229,"hash":"086809f01c4c6e77ab1161688bd03d60ff524735d0d7655cb0daa55bbb53875a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/import.php":{"size":5488,"mtime_ns":1781089058225002885,"hash":"7f22b1eef5dacde90d1f87178f5b446df06562e86331f2b1fef0672da6d33fb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed.php":{"size":27683,"mtime_ns":1781090517391813278,"hash":"9f68801870c368286543040b482a6a8e9773a82506565226d705c0b410873025"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_finish.php":{"size":10806,"mtime_ns":1781091340487318516,"hash":"f36f97df126491fcfdc438f289489a189bbc58b7fa5dc61e48a40edefb77c623"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed_full.php":{"size":42270,"mtime_ns":1781091251098443866,"hash":"da652ff8b7513cab398dc4f7d6dcc92399ef0507410f466a72929684aee6abc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/specialties.json":{"size":16189,"mtime_ns":1781084374016184330,"hash":"de4ba8a0ed9fe595a89be7b4113ae37bddd5dcc5e59766f4cdf7ec34cfd44dc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/state.json":{"size":1708,"mtime_ns":1760953552262399793,"hash":"3678b80abe63c2c45d0ef5f5cfd63cb46f5bcff7cb6f73fb3c8d188ce24d0242"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609130407.php":{"size":1154,"mtime_ns":1781010250896191835,"hash":"d9130e4e0fcecbfc302da5ef3184d0665ef9844067e63673b091dc6b09e5c432"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131304.php":{"size":8945,"mtime_ns":1781010908745260477,"hash":"d8db037c64d216c9d6e3018caab7c9a4966abfe31e41794f43728ac0bd3c11bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609131553.php":{"size":1477,"mtime_ns":1781010960853107810,"hash":"1b3c9ad833965008985bcf3f6a1894e400bc58bb0a8de2b6bc159c31ecdcca5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132009.php":{"size":1986,"mtime_ns":1781011210879944205,"hash":"95e296cf289224cc43748507a9496f493d0e25b829a9e3d8bb8567f6f022d378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609132708.php":{"size":5572,"mtime_ns":1781011630935659766,"hash":"d3211b9b4b08ad40b543052498b4ad7adeb034ffbabc4a83f761807df8e2fe9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133121.php":{"size":4855,"mtime_ns":1781011890870506406,"hash":"fc65641b70ce6d9bb2409aeecccb580333685ba71bcdddb72ea185fc9b717e9b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133334.php":{"size":1529,"mtime_ns":1781012020936148882,"hash":"d2753baf2902d723dba6ef2928c65627dbc4f006c5493a45182b450fb4598fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609133546.php":{"size":1688,"mtime_ns":1781012150911850095,"hash":"98b56edc2e31c609f70d82d1e697c6598f3c65c4120d4e77510d19c0030e9d87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134112.php":{"size":2830,"mtime_ns":1781012480955463648,"hash":"ffb5700205e312f10728cd20f9638450cd2195df9627b5b51f92690526214845"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609134741.php":{"size":1789,"mtime_ns":1781012870832220674,"hash":"eb2a55b4f50f4fd58288452b71dfb5e190958cb8c775354dc9c9f99c929dfff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135126.php":{"size":1922,"mtime_ns":1781013090876422882,"hash":"a736efea5774baa48ac87522442943580e9ce47cab3479e1033e71fc6131eae5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135514.php":{"size":1449,"mtime_ns":1781013320954994440,"hash":"e3901078cc23a4e9ba6a7b748e32fc1a04f888c8d5680da5100b26a56dcd0559"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135704.php":{"size":2558,"mtime_ns":1781013430957508206,"hash":"6ce6851d5331c07c1f13c94f475a7f6823551927ff0b7ccfa8fddec146e69fcc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609135923.php":{"size":3457,"mtime_ns":1781013570869080544,"hash":"b7a581c53e463fa8bfb6a7ccdd65d75c2146aa3b8190852a84a15ad2c8d3bf3d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140223.php":{"size":1590,"mtime_ns":1781013750963170886,"hash":"c0c011d8f3040d2b81dff1ec667f2d650567eb141271ff4d368ed66fdfef9342"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260609140423.php":{"size":1535,"mtime_ns":1781013870906972885,"hash":"0fb344e74f64622b3ea3f4a29e8b6412f35ec60ee46cd25abd5ea3e0abc8c299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610062539.php":{"size":826,"mtime_ns":1781072744933894396,"hash":"c9a4bfd06b4bdb00f74c6a5973acbea2b86b4c8ab64c8d28c730dcdda5bc0e88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610092558.php":{"size":780,"mtime_ns":1781083564938987613,"hash":"7b3ae1ae82625519d5c7986d542c84dc5c37949ac4f3a8c356191dc480b7cc0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610103401.php":{"size":20904,"mtime_ns":1781087803230706453,"hash":"f54443ba8ee1b2d436f3e2bdafcdb026b5b3c8dae9941623fb401792aa68bb85"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110039.php":{"size":817,"mtime_ns":1781089244896521926,"hash":"a68634b6818f1b331bc2232ff9429792f11a7090ef18315754dbb5feec3981b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610110921.php":{"size":1611,"mtime_ns":1781089784421230793,"hash":"2f112d7fbfee7d1a0ec047535854cfb1bf8088099d4f5219e23f9458380f90ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610111254.php":{"size":1109,"mtime_ns":1781089984946035862,"hash":"2c68d5ebfef56abee588aa5abb74a571918a0ed04eec7be7ea8039d9a12046ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610113711.php":{"size":1499,"mtime_ns":1781091448606693864,"hash":"4cd9c0910a49718627e7ea3c5f6f448e6508e609c70d643e160a6c740937d13f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610140853.php":{"size":5927,"mtime_ns":1782583543657239761,"hash":"02683252b3c23dc3005af00fc6a42cbc360a306c799a88ee722cf1560ba22da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610175105.php":{"size":767,"mtime_ns":1781113873591904402,"hash":"49ffb1ef4d630a180b47d4b1f42da6c3ddf8283dc93bc192c16060cc093b5b82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260610183655.php":{"size":2273,"mtime_ns":1781116623586431980,"hash":"e1573ba5f962b956314e7e17a8adf8fc3683dc6065c34490b60a25636d7fe4a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611075829.php":{"size":3004,"mtime_ns":1782626301195816873,"hash":"b3ba50cb2690810d8fb010f0ede4cf92906376908208bf0093512752d72fed76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611083424.php":{"size":881,"mtime_ns":1781166873770630956,"hash":"38e49fefb94b0029f3a10ac5aa846f341e47fb69686ad6d23c4b324de4b5e218"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260611084046.php":{"size":1410,"mtime_ns":1781167246413147688,"hash":"ace825e63afb52cfc794f24547a03563c501cb951545c1a8fe50e2f198e11572"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612081739.php":{"size":1185,"mtime_ns":1781252261521732569,"hash":"abfc51c67c959f525711c661c21872e6a831079510241c197b86175623bc217b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260612132848.php":{"size":1667,"mtime_ns":1781258338612526059,"hash":"c3d155690c12d3c3243190dcc759adf44cdf6a727b3b2563ba50caa78fd2a3cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181134.php":{"size":1715,"mtime_ns":1781516938570601065,"hash":"4febd40d1e647abbd00413dbb51dc59d5f73d15a6d54d7668d08861f2e6c2d99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181629.php":{"size":3515,"mtime_ns":1781516938570859523,"hash":"c8a4a0b22f709c3ad72760ab89c787f44260064e9d3222449292133d85b27862"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614181657.php":{"size":4760,"mtime_ns":1781516938571506442,"hash":"3f5f75cf96210cabb9a36a61036acb7bea5fd01466b367725995b9fd52bedb2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182549.php":{"size":2122,"mtime_ns":1781516938571645400,"hash":"1fc5633381813d3939e8513eb233bfd9c24797537a8348bc83e1f29c2b41e311"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614182950.php":{"size":2545,"mtime_ns":1781516938571764692,"hash":"fd126b1e4e09b2f3433242d40992cb2a829d80a357faa87bf922d86bbf514c2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260614183527.php":{"size":4022,"mtime_ns":1781516938571888567,"hash":"98a07ace9623c623dddcecb1bf1d4189d8efe1692ba261779b1f9661ac07ff25"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615060415.php":{"size":851,"mtime_ns":1781516938572128193,"hash":"0231ff42cfb43dd4cb4ecfaff3e4f1d285d30fdd87a120fccc6046fac3d1e040"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615061938.php":{"size":981,"mtime_ns":1781516938572427735,"hash":"1ac836b1d7089a2dd47756eb7ba0e65801105e2dda52aee3f5df981daa57db88"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615074107.php":{"size":1712,"mtime_ns":1781516938573278653,"hash":"f16f0d0bcf5a4646bcaf98725563639c8ff8b4f2a6d8cf9b8f6a0e7bfbe4c39d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615142236.php":{"size":1117,"mtime_ns":1781535498215147916,"hash":"27e62ea86a4f3aa8539bd976213f57efbd6eb36b8aa4798fe52f2274571941c3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260615203529.php":{"size":1746,"mtime_ns":1781557035803907615,"hash":"b735a483f4db548f9613dd6d5efc8489f1a14559737b39f5fa9ec395f6ad21c2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619062912.php":{"size":772,"mtime_ns":1781850555276849213,"hash":"7803c7d2fe66171063a19937794a6630d34dff563450bbcead5fa6051866ca2f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619121047.php":{"size":780,"mtime_ns":1781871054836536786,"hash":"5b96978f092d4e81b6b9ca61e2a5d5a53e51f1b9b8bf6be43f38cc462371a252"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260619170105.php":{"size":1000,"mtime_ns":1781888467242271818,"hash":"24b56c5edca5c601b008f28dc8b642de32dceeeb408ec38cd5e3f7c40c3ce4f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621084558.php":{"size":774,"mtime_ns":1782031565107938146,"hash":"1a88683010bc9f3571111e2c63fceda2062724f08e0c93a8519405d4ed8bf33c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260621094624.php":{"size":774,"mtime_ns":1782035186037116338,"hash":"846706a2c43ed5b3354ff1ebc8d0eb9d9c7dcaca94802f6b8ae4d4653eb54fc9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622160119.php":{"size":779,"mtime_ns":1782144086923054995,"hash":"d1a46bd2a54a9e9f55a692342bbd1bc49add55e4c29368fef1c0fd6d4f8a9292"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622163152.php":{"size":1377,"mtime_ns":1782214545724072190,"hash":"64ff3985f32d0d18646d441f0edd99be402305cbff68d66519dcb196e17e42bd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622171538.php":{"size":1410,"mtime_ns":1782214545724191815,"hash":"42c0bfb273a488f98079a84f3331c2000ec0018e5c1a748a4f76481853fca168"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622173707.php":{"size":1491,"mtime_ns":1782214545724314524,"hash":"e7ca8699e56c8ce50350006668b7958af1be4663f36620a12ce34dc1fecea6e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622181251.php":{"size":1171,"mtime_ns":1782214545724441066,"hash":"9a5233ddd9873b485bfcf9b9009619a42cec5bc0a4516d98a387b42a249aa0c5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622184409.php":{"size":2212,"mtime_ns":1782214545724627733,"hash":"caa199786e4c7016e4232e653b063278fe809536f4eb2b42305e3bd30beef290"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260622185948.php":{"size":2005,"mtime_ns":1782214545724826651,"hash":"7048fe9c1439b52f85abf3186cf4eec913eb873e8ac6ae1154712adccc327b83"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623115721.php":{"size":779,"mtime_ns":1782215846636875546,"hash":"4c8e43a5be46030c087a8679b9b84e8cf58b4174e9228f94fa02dd0d3f2e5990"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260623173907.php":{"size":779,"mtime_ns":1782253591740927223,"hash":"237d660c556b7f37176854a98f02cd114fafab9405f9ae4945a8a75941928f8d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624030339.php":{"size":916,"mtime_ns":1782270223182271448,"hash":"a97dc816b64080ab3aabd67347c2161faff7090629810a6db13c051991edd8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624092459.php":{"size":2059,"mtime_ns":1782293101374459999,"hash":"44b5621ce383ac7cb1cea47d7006f3c2b0b47bba8d49f59c78a0df4f737f8482"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624093738.php":{"size":1266,"mtime_ns":1782293867202071491,"hash":"dedb9cb5586cb39f3d35af323fab3e41ff8e63ca961cdb98b8a7beabd113c8af"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260624123236.php":{"size":809,"mtime_ns":1782304359030218634,"hash":"acb3129833c4f6b1ec99f90496e23400de1df0624f1dbbba5077a20500a38548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625135132.php":{"size":780,"mtime_ns":1782395498606655159,"hash":"a1c3aafeaa1761bfaff51ae0c523a2781cf359fca511e7aa8bd294b70011a9a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260625150304.php":{"size":1990,"mtime_ns":1782399813900039403,"hash":"87f84613f1b928abd28cf7502c4572ebf7599d0c47d3c97497a5d74b9fb2c983"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/package.json":{"size":2261,"mtime_ns":1782728407180886172,"hash":"44bbdc99c5e4a3a3c3645f2d400419bae158aef97f432ecf3340eb902c8deab7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/index.php":{"size":206,"mtime_ns":1781009656089267135,"hash":"6609137ba6c6187032cdfd84e9d39097732d861414157cacbdeb77b2b271ac8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/public/manifest.json":{"size":851,"mtime_ns":1781344581738519976,"hash":"1f7781991eb738e4d1e1d94ecbc02013b898ef8bf8a7beeecf1af9687643b4dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_realistic_data.php":{"size":24320,"mtime_ns":1781519949285784202,"hash":"2ad075c6d333a42f3ac51adb0e1d8b444f64f3b5a01bc87f53d9522cb272ce68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/seed_test_data.php":{"size":13557,"mtime_ns":1781169644756523490,"hash":"d5bbc3b4a96e7abf610d9cd63da61dac6b73bdd97b5672eb4ec191bbec2255e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/skills-lock.json":{"size":267,"mtime_ns":1782232921467371596,"hash":"4b889910ed363cee9dbd7da20e9c0748ddf40dd483ed92b5e581ebedb506f179"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php":{"size":100417,"mtime_ns":1782750165340121553,"hash":"5c94ca6ec5ce79cd14d07da357d72b77bcaba0e1f311e187cd3c8eeb2ab4c46b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminController.php":{"size":490,"mtime_ns":1781030416417456388,"hash":"7d18322ef916885ae0181a7b9dde07ab07d08bc49cbf72669f50e5268ffeef62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Command/CancelExpiredAppointmentsCommand.php":{"size":920,"mtime_ns":1781551622411049671,"hash":"3b56ad9741a4349bd249a4a4e320f7195c320fec9a96ccde6da5b8f75d87b32d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentController.php":{"size":24240,"mtime_ns":1782304270243667628,"hash":"8a6f406c0d70ab3cc8802470ee6fe0d24c883177fb8fd436653c31edaa915e36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/AppointmentSettingsController.php":{"size":17714,"mtime_ns":1782728407188976018,"hash":"213d1b93ba08882b32a47b70be27553aae4d53bf92fcdb66d2c2876e33f0eb6a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Controller/MyAppointmentsController.php":{"size":15723,"mtime_ns":1782728407189591731,"hash":"36e9472f0cdcf7178c898629a676f50452d0572c9dfc7f6c0d3f91a602716a0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Appointment.php":{"size":9871,"mtime_ns":1782728407190164318,"hash":"199c0bce6c58ae43bfd76f426a9b879985958641a5730886b73f925b79e85395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/DateOverride.php":{"size":2925,"mtime_ns":1782728407190402153,"hash":"c59fdb6d3f05bdb6cd558bb74e701897aa14947acafadb64943469c19fe696f0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/Holiday.php":{"size":2953,"mtime_ns":1782650883604011152,"hash":"45b9c56571e20dfc0cabc789b083e2099273efbe5c0a589268a7f5e35106e631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Entity/WeeklySchedule.php":{"size":3519,"mtime_ns":1782650883602991274,"hash":"ac7a64333676e95bd5f9a78c22fe0f83fcad6bf96d65ae2605685ab8c01ed453"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Message/ExpireAppointmentsMessage.php":{"size":85,"mtime_ns":1781551622411423796,"hash":"094a07b7c7552dd1c2812e066ae7e9cde6dc6bc9ca4ef07e11b82f8feec45fd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/MessageHandler/ExpireAppointmentsHandler.php":{"size":504,"mtime_ns":1781551622411619546,"hash":"8981c0048e84b26121eb8e2a6e1f9913a7d61d958a48bc4bee113df6c0c77a80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/AppointmentRepository.php":{"size":7660,"mtime_ns":1782728407190649529,"hash":"293ee69d87a2ee0421f6a4f73ef854b9fd7d261642ac34795a453438ac762b39"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/DateOverrideRepository.php":{"size":1119,"mtime_ns":1781012268350237489,"hash":"f383ecc7f0712616f9969689e3a2011faf49b3ee6c2ec3fc6751f0e93560df91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/HolidayRepository.php":{"size":1768,"mtime_ns":1781099253934669137,"hash":"f886ede4b1998bcbd43c335af00c205c410cfe7bd74b17c12add062b12b84d7c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/SlotTakenException.php":{"size":101,"mtime_ns":1781535498216404171,"hash":"e6ca84966b94b947c7df53646b8a0c5b1a5f5564d144e2b0e00b7756c97d718a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Repository/WeeklyScheduleRepository.php":{"size":1480,"mtime_ns":1781523180068721029,"hash":"8a3deac81ebf1b16b5221f172aeefc9a45009658b7820e6e8597a589ea3af936"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/AppointmentExpiryService.php":{"size":1834,"mtime_ns":1782728407190939073,"hash":"0e08a53cd50f1fa75c2998ce2d39400cf116f1e7d5632015fefd589ca730e771"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Appointment/Service/SlotCalculatorService.php":{"size":11056,"mtime_ns":1782217986438154633,"hash":"b42aeef988db241ca6b6bba68a3932214b3a0bcd6b89e1185883c7a52ee8be3f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/AuthController.php":{"size":36120,"mtime_ns":1782728407191234283,"hash":"d7f98b20db8f66beaae6688b6a84f1692b43437de6e85a3808774743694f3c80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7438,"mtime_ns":1781888558424222836,"hash":"f741f4d2cc7d43672b9c3ba189b7a6164cd5ef1031a02a697a6971287f6ac9be"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7871,"mtime_ns":1782728407191857954,"hash":"fc3c53bab05acd5e3c477e5d05c90964c4e7172f3afe5c96d11376a85510b1d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/MobileVerificationOtp.php":{"size":1930,"mtime_ns":1781167196281533241,"hash":"511faa2e0698158b312aa66c5b7d54539963056b011200b3a7b86a65651e56b7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/PreRegistration.php":{"size":3061,"mtime_ns":1781252232305967808,"hash":"74a388c7ebafa889c4428ba1538ac46ed8f1f5c6ef5a34975016f85a128c5f40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php":{"size":4972,"mtime_ns":1782728407192144123,"hash":"83e9341f771214eaab94dd7c4f0aa2de0e5c0528a0fa5eb4927659f94bc7ddf0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/UserActiveContext.php":{"size":1160,"mtime_ns":1782652951356493481,"hash":"1c60c30e2800176bb2dde9730607d081f2fa1a05f8f6ee6e917ad256bcfa73cc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/PreRegistrationRepository.php":{"size":842,"mtime_ns":1781252241014651656,"hash":"050d7fae8134856aeccfff39607f5cfb44e8b923e13d0235411a577b78a6f96d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserActiveContextRepository.php":{"size":952,"mtime_ns":1781164699567301035,"hash":"22c3a507b65fe3f858806b1d7bed15411be794586278ddae7ac5ebe09782bbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Repository/UserRepository.php":{"size":1023,"mtime_ns":1781010107490769863,"hash":"748b70a06bf6833d94e5168e4ebc06ad7faf0dff67f5f099f595f10cf4f59137"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php":{"size":4195,"mtime_ns":1781946748878509164,"hash":"abec4d9e6782d2833c1eb7862460130ae093b20b5afd4e1ca468f9ce784b53ef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3228,"mtime_ns":1781946485891979924,"hash":"e9d828bddc99129d0ac0c37ce23b83257fec16b7033074557acecb4757d88f14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/TokenService.php":{"size":2166,"mtime_ns":1782036558107915300,"hash":"3b749587b4c8ffc2d0fcf9a266ab32aff75b1681af31e6797d8046dd3ee36713"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmissionResult.php":{"size":509,"mtime_ns":1782214545726213864,"hash":"5391e205be5e00bf0cdd088d6f9b52427e30e3a5d29d2c0ae39753b15b67fac8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Contract/ClaimSubmitterInterface.php":{"size":461,"mtime_ns":1782214545726346198,"hash":"9286f1fdb68765c4512fa8aa302156a4fc54df7af3fb5d5d1e2d59c24111c3db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Controller/BillingController.php":{"size":13703,"mtime_ns":1782728407192799169,"hash":"7226845540da9c2d9121eb7e25eab910b5d60d45d0f5dc14321ce9379b079967"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Claim.php":{"size":6465,"mtime_ns":1782214545726749575,"hash":"85028f866ff4695fa0095e4ba3191a385a63fdb3aa1f3222fda2d94b61d6d39c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/ClaimItem.php":{"size":1646,"mtime_ns":1782214545726889450,"hash":"0e3bb1ebc45d4c045ef0e6fe09170976c315d7da410efd79bdcc53189e9dab49"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/Invoice.php":{"size":6079,"mtime_ns":1782214545727230826,"hash":"02081acac585d1cfaabd1d404b0bb25c7bcf25fa51e32bf986cd75675d14ac24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Entity/InvoiceItem.php":{"size":3448,"mtime_ns":1782214545727383452,"hash":"63280ec10f55dc16106afecac0784a9094ce12fbd3787a482a75eafe451aa5bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimItemRepository.php":{"size":895,"mtime_ns":1782214545727554077,"hash":"9f606952d141e1db9f444ec80bba343c34a5c39f905f72c53c76d7cc7dc58f89"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/ClaimRepository.php":{"size":5807,"mtime_ns":1782728407193826801,"hash":"26fd73c5de681031611a56b0e9a1140cf3b4c1088059ba954e7c3c8a344392de"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceItemRepository.php":{"size":2056,"mtime_ns":1782262433593751772,"hash":"6a2e18c9de2434f67ce2250dc17ec50a29f207b95ca2fc6e2a9c7d338a67a67e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Repository/InvoiceRepository.php":{"size":865,"mtime_ns":1782214545727978079,"hash":"71c55535e6b20d820e351a26af6bd1c1b6cb26c371414e611e8e858c2d8486f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/BillingCalculator.php":{"size":1975,"mtime_ns":1782214545728144705,"hash":"9751645f561446a0d0f6a618cbbeae012f7f2274c5c1fbb4379220b995070f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ClaimService.php":{"size":4124,"mtime_ns":1782254015995593528,"hash":"f04e02faaf3d8f49d493c2e77f8f80120e8de353af185e624996c9b14e36267b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/InvoiceService.php":{"size":3335,"mtime_ns":1782263056583478624,"hash":"411b9e4e6aa41a158211959c5b9c4c286ada95c8b68596364eca3b1cbf436e86"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/Service/ManualClaimSubmitter.php":{"size":771,"mtime_ns":1782214545728543539,"hash":"11064e4cf0182849f67012ead852a3b45c2d8b66693e9680bfabf4094c3b9d40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/Money.php":{"size":775,"mtime_ns":1782214545728705873,"hash":"97c8de0bcd950f7b29c8f8fb87d33f4cb79bd0b17e531592c80fa5fb5c0e6de8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Billing/ValueObject/ShareBreakdown.php":{"size":599,"mtime_ns":1782214545728844457,"hash":"98b4c746ff1d241697d227cd21bf6a8b010cea93dbf0a219f89910456c511ac1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Controller/BlogController.php":{"size":17742,"mtime_ns":1782050215484280688,"hash":"4bc5e62060b6e27970972698933b7e9b6f63a4eba44cac9fd08cabb6d5c355f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Entity/Blog.php":{"size":5562,"mtime_ns":1782650883613744390,"hash":"5e6a312d48b1efacb7e4c14b87a658d1ad64bf0d3aefa5bdb2008011cb3b175b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Blog/Repository/BlogRepository.php":{"size":2133,"mtime_ns":1782049659479434537,"hash":"a15b4c1c26d71f5cd0b0d4e3c913702999a475ae13abd7d8eb29ab20e033adee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryController.php":{"size":1776,"mtime_ns":1782728407194246845,"hash":"1be28d02d6f241500cc7a55f1a597962d80b5f72c814c9308fd6811029aef714"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Controller/ClinicController.php":{"size":34368,"mtime_ns":1782035216514487631,"hash":"434df68031d6367be88eaa0faa9ed185484cd9e7d4e4b4b9e0b50d4d743e18a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Entity/Clinic.php":{"size":12311,"mtime_ns":1782728407194604639,"hash":"d192f3609f782986a1c36a6236066c503364b8d1bb7312c928e7c9ff1a2f5d80"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Clinic/Repository/ClinicRepository.php":{"size":4495,"mtime_ns":1781782025398193552,"hash":"e6a358cbfbbd1bd23e4e823ad1b981c488de8282df7bdcf2eea921232be0b090"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationController.php":{"size":10193,"mtime_ns":1782728407194937600,"hash":"9e968ad47c34e34775e6793301147eaf9768692a8f254ceed37152207ae3d202"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Entity/ClinicDoctorInvitation.php":{"size":5434,"mtime_ns":1782728407195142351,"hash":"44d986e38a0aaff4ff36d621205c7361769814ac64e5e559dfeb02d2e63b09d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Repository/ClinicDoctorInvitationRepository.php":{"size":1821,"mtime_ns":1781293272835808881,"hash":"10604824317018d8f535539834b9913ef3982889b1ffb2874e4438f848f06726"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Service/ClinicInvitationService.php":{"size":4420,"mtime_ns":1781888637727954912,"hash":"123c29f45911c7151d410112521a5d787922a73bbb0ebb1f53792aff70376e6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Controller/ClinicServiceController.php":{"size":15449,"mtime_ns":1782728407195387478,"hash":"38d8db77331e6ccdf9e78a54f5f223cd74cd1b83880d40ececcf4cce392472cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceItem.php":{"size":4270,"mtime_ns":1782260462891413703,"hash":"f7c314c5ddc678d4896d358c4b89ee1048c314fe237fb307b1909e44d986307f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/ServiceSection.php":{"size":2865,"mtime_ns":1781516938575505158,"hash":"6fce4d578f8878eb023372cfeeed180e1826274363811165b1623578b8911386"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Entity/Tariff.php":{"size":2497,"mtime_ns":1782214545729589627,"hash":"77a5e0dca59cd5587ab614a2bedd46a0de3485d620a6125f4804db7b688115f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceItemRepository.php":{"size":1193,"mtime_ns":1781516938575690367,"hash":"3561e5174c09c2d295bf2b77e3a2692c234f30cfe76b597213ce1bd2ff9bc81b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/ServiceSectionRepository.php":{"size":1274,"mtime_ns":1781516938575822117,"hash":"6e87ff4062b59b4870ac32891b6fd40ab36ed939b3a67959c600a63a0375b299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Repository/TariffRepository.php":{"size":1312,"mtime_ns":1782214545729721752,"hash":"fece09188f0d746cc7fdc518fb8d63488c77314d629940d1c0969b6f28fc7b38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicService/Service/TariffService.php":{"size":1653,"mtime_ns":1782214545729910003,"hash":"13d77eda5f22d43badf639d0127bc7252b3adfe6c72657c33423ad5a04f345b2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Controller/SiteConfigController.php":{"size":3439,"mtime_ns":1782893916734852546,"hash":"bb6a974d013754fe77c2577a07a554078f429acaf013a06e237ff08147e2b673"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/SiteConfig.php":{"size":1026,"mtime_ns":1782650883609343293,"hash":"694f1f497f5a3a1095f2949eacd68694eb7e8d6536abcd1bb61e7d788abed158"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Entity/TaxRateHistory.php":{"size":1836,"mtime_ns":1782650883608855500,"hash":"1b50a1ed1a3d72be73df9bce2bcb010e2b90888bc7daa0a312ede4d181327631"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/SiteConfigRepository.php":{"size":2233,"mtime_ns":1782893889148053837,"hash":"55da5cb4db0e24559e575c24450d6fea5b277ce11744791b6db7a86988f9d703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Config/Repository/TaxRateHistoryRepository.php":{"size":591,"mtime_ns":1782293892020820040,"hash":"1161721d41f057cd7c7d820b405a526cf644ade3da6a44a93e63ce9a364a9ca3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Dashboard/Controller/DashboardController.php":{"size":18353,"mtime_ns":1782895903517818351,"hash":"daee2d9b6d06d625e6cab2ea419f7cc5f7ddc2ebfd53f1132502a4029bb71f7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php":{"size":37753,"mtime_ns":1782728407195775022,"hash":"2c2f4c831d7ede2101b72277fc7c20ad06ac22dcd23045b8134aca7471278238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":16811,"mtime_ns":1782728407196033316,"hash":"dcd2dd96c11cd47f033dbb41718dde4b0f7fa2a2110f25ba4804b33e37e331e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorAddress.php":{"size":5470,"mtime_ns":1782650883611537550,"hash":"f42a0409b492abf55f1ed704e65e2273b1a9b7424abf0d2bd9c9507ea9345747"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorAddressRepository.php":{"size":2770,"mtime_ns":1781783246170814153,"hash":"531973c4cf541ba9e8f3955fad4c863ec94f0a5cf84a03c9fa438aa59f979a3c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorRepository.php":{"size":7714,"mtime_ns":1782728407196368484,"hash":"3b22e183b3ec75a81be9e5095a62c8597b792a7be8b588e084f50c3f3ae0c2e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Controller/DoctorServiceController.php":{"size":5592,"mtime_ns":1782844356167570792,"hash":"4e16c69d4c1e7d4b295ed6840c0b6010e03e8c0c7411102cb63c1295dacc8538"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Entity/DoctorService.php":{"size":2831,"mtime_ns":1781085550562230229,"hash":"6d7d545954a787dfcf52e2f9b8ccae47a1af55c21a43d3c60ca8c59dbade506e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/DoctorService/Repository/DoctorServiceRepository.php":{"size":1274,"mtime_ns":1781085558665462494,"hash":"79eb3168176aa86043e1613fa832e0a94b683ab7cd5a7553222d88ef9198f4c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Controller/InsuranceController.php":{"size":25579,"mtime_ns":1782844375135424196,"hash":"81785346450737ea93ec13608e671ec5702072ca36bda0b89666f1497c9e6e68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/DoctorInsurance.php":{"size":1960,"mtime_ns":1782728407197029697,"hash":"3835c0d26cf2af6937ccb1990a2a097e0696bc03c144ca9863867906de1b3a94"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/EntityInsurancePricing.php":{"size":2507,"mtime_ns":1782214545730369713,"hash":"e0c3664524d71706ffc2c377c20c9ea5d12be0b8aacbe3feaeffe555ee003ef7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/Insurance.php":{"size":2270,"mtime_ns":1781085569269281268,"hash":"bb5c7b593458bca73e6d767909d845c59371d50aefc54d6819b53b036d16d8a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantInsurance.php":{"size":4767,"mtime_ns":1782214545730514547,"hash":"8f4a4e4087e65a58cdc2444a4584a3a40796948313e4374e1f8a38983385bda9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Entity/TenantServiceCoverage.php":{"size":3432,"mtime_ns":1782214545730644047,"hash":"fd098f4aef57bc0988ca8d17760b0009d2742666fd62fc0ff2ce07fc6b0dab1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Enum/InsuranceType.php":{"size":351,"mtime_ns":1781085440519759893,"hash":"30ae4d15da752fad6f6fdf214fc764732f372af51c1361fcdd23ccf7cb66d41c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/DoctorInsuranceRepository.php":{"size":848,"mtime_ns":1781011984448803782,"hash":"61e05cda6d846d53a56fe1bc16a932bd7ee1fcc43f8ad9cdc4f8eda7635a2bb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/EntityInsurancePricingRepository.php":{"size":1404,"mtime_ns":1782214545730775964,"hash":"623b73aedc8f41f9f0ac7d374725808c1c72012956628e15ebde5681f7034dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/InsuranceRepository.php":{"size":1220,"mtime_ns":1781085576476951957,"hash":"dc63f462de508c5f6d1fd51b08ebd887c5f79528d5183fc7a792e6cb579e26ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantInsuranceRepository.php":{"size":2436,"mtime_ns":1782214545730912256,"hash":"b99e224b9f48a68ebdb627590ef6c9057f3ec7969e4ca2e317378766527785a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Repository/TenantServiceCoverageRepository.php":{"size":1339,"mtime_ns":1782214545731054174,"hash":"5d8193d5276ee2a12f650ee075fc47f0bb32f32bcaf26f46328b1c7498636853"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceService.php":{"size":6310,"mtime_ns":1782268410292219426,"hash":"088a8086ca7a8284aa67577aa0ffe060d532f3bbb2090b6c3e3ff0f4730e2703"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/ValueObject/CoverageRule.php":{"size":381,"mtime_ns":1782214545731415633,"hash":"3ce989704beb3ff9aa60cad8460e69a1ef5a411ff0024b7d5541df502f4cbf2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Kernel.php":{"size":992,"mtime_ns":1782743240249498742,"hash":"3b2fcf35ae459cfe82147916f43a6da872819e946938e0cd330a596a226065a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Controller/LocationController.php":{"size":10591,"mtime_ns":1782844299834748883,"hash":"8bca602dbe641a0ea0900bc21d5cfd52a303d1a16b2ee3e2291fa07bd2441d93"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":5855,"mtime_ns":1781089230145855904,"hash":"a9c471a92b627484e74df8e11ebc9f6db21a05c249df2f67eb74a39477204e4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/Province.php":{"size":1688,"mtime_ns":1781085458710667014,"hash":"3353fa978b6558c945031d0c09a3dc24706f592287978236072c53c3cc13d033"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/CityRepository.php":{"size":1187,"mtime_ns":1781085493561648130,"hash":"1a7f0d07099224c30cc6111ba102ddf6cd583df610528c692ce923d42bf1e591"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Repository/ProvinceRepository.php":{"size":1071,"mtime_ns":1781085486117016673,"hash":"4572085d4a4e79a86a1c2cfcc89b5cd6268ddeb466878a16db71f60216a6c148"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Controller/PatientController.php":{"size":15797,"mtime_ns":1782728407197647952,"hash":"0adb531514bb19b3fabe1e679468f731f00cc6d34a2edbb9e887a18c94447bc2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientRecord.php":{"size":3088,"mtime_ns":1782144029159424511,"hash":"8be2218c1dcc6dd9101278637b469d927567abf3e264d6b8c634292641096dfe"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/PatientSession.php":{"size":7041,"mtime_ns":1782728407197911662,"hash":"e99aa5f70fa1eee35e78e90f7ea8e8e5f4bc80b77d2de0888eafd91b3ef0fcf6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Entity/SessionService.php":{"size":3069,"mtime_ns":1782253591741414931,"hash":"d7326f5115c044fe75744a4c6ac0e2d0efca2b4a93e57984483f1c859ffba1c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientRecordRepository.php":{"size":3131,"mtime_ns":1782144042914186374,"hash":"c445fbf45f6eb65c5fd5c3f0704e1c972f0a9d9297a80d0dc879165fc57666c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/PatientSessionRepository.php":{"size":3665,"mtime_ns":1782268984212730950,"hash":"24f29fe0ee2cade4f4bef5572aa45086f444ab02d67f82d24228de49ccc25a2c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Repository/SessionServiceRepository.php":{"size":563,"mtime_ns":1781516938578050288,"hash":"24beb2335672cb84cfa5a787618c7907663606aa14262af1b8ee93058c0ac265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Patient/Service/PatientService.php":{"size":7827,"mtime_ns":1782263039495809276,"hash":"e23289a2e8d04c22a69888e3775e2b851246b28c6e217cf22e8c91e99ada9ee9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Controller/PaymentController.php":{"size":32713,"mtime_ns":1782896983473692359,"hash":"9bf4a94a3cb6f1852a51d0079085d6e0eb17c0fdba5046f98cc8797cfdc56141"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5647,"mtime_ns":1782728407198542249,"hash":"baea6fcd3343ee16bf9c045dc65f6cf06e022b157b485144dd459f385f9ee5c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":6266,"mtime_ns":1782896964907650632,"hash":"94984cd8d8f2e3852459889e98eb163d89666bc4fed43e2fb9e8528014ddd8cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1488,"mtime_ns":1782896968603320074,"hash":"5aad6d8654a15ff3dcc96d476cc3948643ec8de2ef4624c220dfe22ce6ddc501"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":578,"mtime_ns":1782896961142724929,"hash":"540107aa296e34a640bcd59cd80e5cabc4c739d4dad43a1645eb30ba5c196ffa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":307,"mtime_ns":1781012933059275866,"hash":"9b5327e24637c885b0696cc7172071104927aec8791208b43867049dcbbe0d63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentVerifyResult.php":{"size":368,"mtime_ns":1781591920508677099,"hash":"88f08d81dc92ac75d2f0628c60f3fb78b039b9184039592047cc92c58d0db068"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/SepGateway.php":{"size":3926,"mtime_ns":1782896967245397686,"hash":"5503b09d5adb7e31a3681493baea94836c72554b336080b63229cad9f25907ce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3293,"mtime_ns":1782728407199154920,"hash":"9051e2d1dd67a0d6fb8a70504e7bbbc79f891e098a4d836d0e8f9ae6ff7639aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/CircuitBreakerService.php":{"size":1228,"mtime_ns":1781012993246621609,"hash":"4e04548bbb1ae6b6c17a4206408f3050ad341da5ddcc74d4b1af376b50580911"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Controller/RatingController.php":{"size":22783,"mtime_ns":1782728407199386297,"hash":"64462e603b4569268e25d7f6a989f1b4d9b598a7613405a5d5d0165df2b477fc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Comment.php":{"size":4881,"mtime_ns":1782650883605327864,"hash":"c43aa389121312d1fe2ba9639e3a6a0ba5fc21f78d0784adb723c26e3afbc0fa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Like.php":{"size":2153,"mtime_ns":1782650883604545320,"hash":"7a7937df6b8df47196e035544c1ec78a11847a0a1688114bdb5265adde8d32c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Entity/Rate.php":{"size":4359,"mtime_ns":1782650883604952613,"hash":"bb8b2b8ccda54b99bd5ab0bd937dc29d4ac840195e3f89fcfc286b5429b2b863"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/CommentRepository.php":{"size":3785,"mtime_ns":1782728407199666132,"hash":"57721807456fc1a9e0c2df0dadb2b4c45cff8a7c2e650c33ff1e4edc22ec9eb0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/LikeRepository.php":{"size":1619,"mtime_ns":1781557035805931490,"hash":"9c2c1575ce7f26c9d2139ab8301fd887658e295f66b4f164b48d050bd43a411a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Rating/Repository/RateRepository.php":{"size":2052,"mtime_ns":1781557035806516573,"hash":"5e2c5765f0d67648d72fde8992e1969822df630577e503f9a086dc01960e3f90"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationActionController.php":{"size":41170,"mtime_ns":1782728407200475887,"hash":"973a496476356f34610a5a3167495b0d91dec8c49306f38fae4480267ae9f378"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":21984,"mtime_ns":1782728407200758181,"hash":"681dfdf19f3a7a8d0d86ddefff60f30fb81d1a9c1024137c0f9ba3af6c658fe4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":5417,"mtime_ns":1782650883614592767,"hash":"ce5a938bccaf71572af189a1b92ee7e21baa9865c299dd261e3f18180b21b620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":1239,"mtime_ns":1782304285868497898,"hash":"7b69c315115cadf10ed9b253b37141184c085cad544ab6274f330a0d1b17bfc1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/JalaliDateService.php":{"size":4368,"mtime_ns":1782384877403158726,"hash":"8a1282441580b6b46896c1c52a6ff284279e0e3610da60c638bfce1067450fb3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Schedule.php":{"size":882,"mtime_ns":1781551622412449131,"hash":"2ec793b26f528520f7f80ce26684ea383b09eb5081e94900a469447ee3091d8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":11140,"mtime_ns":1782902851071893550,"hash":"22962190c09511c075841be03160d568136c781309f19f50f6cbb7a21f6dd499"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Entity/DoctorSecretary.php":{"size":5203,"mtime_ns":1782728407201032933,"hash":"7a89e177bf272aa6e20c29d8e39c66c4e9f761daa1875a073525369cebc48193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Repository/DoctorSecretaryRepository.php":{"size":5327,"mtime_ns":1782728407201262976,"hash":"bac031cd09fb91bf156e250accd69b5bb83f2af7738e8394852e746f3152dbb2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Security/SecretaryPermissionChecker.php":{"size":724,"mtime_ns":1781012108901602268,"hash":"42ddb598442c2c167950e1a33eeceb551384377427749d0ee3b6a61f152e64bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Controller/SettlementController.php":{"size":23112,"mtime_ns":1782728407201510186,"hash":"b6f3ad0ae1b555833b87edf0398a96200295160b1c6a57c26e3f751274892c9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/FinancialBreakdown.php":{"size":5470,"mtime_ns":1782728407201776813,"hash":"a0c5e8cc2f0a3597518275c45fe403a188bbfe210fa75da65eee3ebeef594963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/Settlement.php":{"size":4252,"mtime_ns":1782650883606160908,"hash":"36b84f9a63c52cdf4150c0848c4a3fd28a0c7a1aba6bda3f147c3dd9da2f969c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Entity/WalletTransaction.php":{"size":3099,"mtime_ns":1782728407202004397,"hash":"d2acafb91806e555535cdbddd5151e71b71561cddf2d0872461285e6d1489b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/FinancialBreakdownRepository.php":{"size":779,"mtime_ns":1782293142660794730,"hash":"ae9fa6ec3678bedb9574a38678795af169ff793fe2e660d9413fe05ba1523041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/SettlementRepository.php":{"size":2270,"mtime_ns":1782728407202173607,"hash":"9c617a929f6ed0595a371ee05d2e9d19d204ed3eb80bd0df9fe9de71fbf76e2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Repository/WalletTransactionRepository.php":{"size":974,"mtime_ns":1782728407202497901,"hash":"12fdfe848f6eb143b87b09645122480b33a778bdf2d9179fd9d45c27540a23a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Settlement/Service/CommissionService.php":{"size":5477,"mtime_ns":1782304402886645822,"hash":"643e2a0f6dbf7cbcb2f4002b3dae74d02c8d6e9f694cd1249ad54ae7ddc63e92"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9417,"mtime_ns":1782728407202855820,"hash":"3e172a36ac3e336ad3501c5defbd9ec894334ba4f7f720b04d4515bd6703b939"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/BaseController.php":{"size":1710,"mtime_ns":1781009861592137456,"hash":"4bd3aa269121a122fcf443aa15c884adf07e0700950135a3e66dbdf27b9c2416"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HealthController.php":{"size":1190,"mtime_ns":1781009995463320374,"hash":"124d5bfe7f63a910acd5ddab19c0ecb83c9d9005786fcd6606e597e7f6b6050b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/HomeController.php":{"size":409,"mtime_ns":1781248993159620643,"hash":"d08f9d35b78ee68ab06620388e34b709eab59364bd0b84e5d2e1478f45310970"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Doctrine/JsonContains.php":{"size":1061,"mtime_ns":1782050362337187655,"hash":"bc76253c31cf5a3bb23264736171549281989a4d9915b05a303647324d5aa4e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/ExceptionSubscriber.php":{"size":5579,"mtime_ns":1782747822711536821,"hash":"cc3e848cbd0237379c1c26afed58de7230b93b095d87ca672ffc16e88a7bac40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":1559,"mtime_ns":1782728407203289865,"hash":"4c05cb260495d4e38a1c9f13163eb64ee0cf264d95c6f87994cc03e4508c285c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Exception/AppException.php":{"size":637,"mtime_ns":1781009868466892123,"hash":"7956e81fe8e81b642076d55380a796ca70431e6c3880db06d2fc264c8b078f82"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Message/SendSmsMessage.php":{"size":235,"mtime_ns":1781010000546687126,"hash":"daff508176e43de48738f7d7b86a97f047329c0c3a9896602933c7aa130ff739"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php":{"size":4598,"mtime_ns":1782750061879006297,"hash":"d2a46876b0e6e0cc5cf9a88c3ea9067de7a0f64df5bc59099c215c14a123a305"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/FileValidatorService.php":{"size":2743,"mtime_ns":1781946812332075105,"hash":"4c26e4f47f2793bbef582d233a1f08e96e91274448209159653ec0d95a3b8b73"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/InputValidator.php":{"size":1811,"mtime_ns":1782290232599858088,"hash":"3d610effa54b8c5afa1c206c0dd46ed3ead6b84215d54b39e6789c498c01427d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Command/SeedSmsMessageTemplatesCommand.php":{"size":1380,"mtime_ns":1781888665382463925,"hash":"1a62b01d290b483e8188ad1a555bb459bd780334cd28835e86bcc0517382c78d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21687,"mtime_ns":1781889430823494936,"hash":"e768f521935e2bfebedf60e563dd50f8c2eaf1bec54382bc01e05aa72ba2941d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4104,"mtime_ns":1781888448780113939,"hash":"4724d7f809243a92d8e48fb121d8d7e946d9e4072879f7df95804a9e69e13fe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11944,"mtime_ns":1782894791538739382,"hash":"5a7b81ccbc80a2eda57c20b2a678a9c6c0eefaac5f897cdff1caa158600e68fd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":3070,"mtime_ns":1782902823958000168,"hash":"f8cd091e36d8c2f841540dd25b1091db266e42634f4ccd26f351748f1fc21079"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":4223,"mtime_ns":1782902828661939929,"hash":"df83b5af8cf13028807615b2d62c006bce1c67ca64c1d3a907fcba083c8bd8ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsSettings.php":{"size":5136,"mtime_ns":1782109802341264005,"hash":"751faac90d0b9d9320a8315e7b0765dc39d94089c96a65bacb4a59d84bc442c6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsTemplate.php":{"size":4085,"mtime_ns":1782650883608045581,"hash":"9c1ebef6b3ee3a4724e94af555854df18a8d5f2bba6f524781a94478123be0dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWallet.php":{"size":1749,"mtime_ns":1781516938580571044,"hash":"af121e73720cdd1fac6a329c931f01349fae4aba0cc9ca12bf25c232ebb69e5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsWalletTransaction.php":{"size":2423,"mtime_ns":1781516938580684919,"hash":"5272a1b08bc5d6f28d5d845e9201780a4804fce789175b7be82001a4102f09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Message/SendSmsMessage.php":{"size":495,"mtime_ns":1781871113880839659,"hash":"e37f791352f7f9ab7ededa626d6c3d53fa7675ae4e9cd65f499d5b0f0d8a356f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/KavehNegarProvider.php":{"size":2609,"mtime_ns":1782893881095928452,"hash":"2964a2ff29bf2568a52d10ab0e0fd05caeada222d1d285c67851cd88e6d67f8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/RanginehProvider.php":{"size":2234,"mtime_ns":1782749977746062400,"hash":"e2910a9314c0a63d60a4d5df210a421d12149e64db2550cb58bf021bb84f19c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Provider/SmsProviderInterface.php":{"size":361,"mtime_ns":1781013608175277472,"hash":"225781d93f9a713aa0a979f12efff07f7805972e287cc1fe11371367bfcc4e43"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsLogRepository.php":{"size":502,"mtime_ns":1781013670673270702,"hash":"66b4158b7f47661bd573f21e65c35e20e22ecbb830736f07091857004868eeb8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsMessageTemplateRepository.php":{"size":752,"mtime_ns":1781888405897787839,"hash":"a6b1523de3a122f8c6dd8e442929ae821b0cc88dab224899c0a8cf100b6247a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsSettingsRepository.php":{"size":729,"mtime_ns":1781516938580977169,"hash":"c2df1e6cc37ef5422312c0eac75fdea0d42de8e6eb822faa96e7bc5e423be9cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsTemplateRepository.php":{"size":789,"mtime_ns":1781013662226415873,"hash":"8da60c0de8613863b8928cb46c6bd846cff26539f158be4a68115ff3a6c68684"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletRepository.php":{"size":911,"mtime_ns":1781516938581096086,"hash":"01a35794369da341601324499da53378a75ab8592d14a32b72d564b44137177d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Repository/SmsWalletTransactionRepository.php":{"size":1325,"mtime_ns":1781516938581213795,"hash":"68b117404c5f1c7c68914a367f9ac656b25cb486daeabb9808a36be205f4de56"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SendSmsHandler.php":{"size":372,"mtime_ns":1781013692820181847,"hash":"f644961f4a1538c1d315e1d6000fcae2d4466975c054685003dc616186614172"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsService.php":{"size":1914,"mtime_ns":1781888026617108387,"hash":"4581869e73129d4933612504c7f98caadb405f5a192dca7a805d4cd5220482ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsTextResolver.php":{"size":990,"mtime_ns":1781888419028487399,"hash":"c83ed15618515fd7301a8fd03a409f17232d3d03e917fcda93bf1f72fc70b963"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Service/SmsWalletService.php":{"size":1830,"mtime_ns":1781516938581332837,"hash":"72dc9bef8e8ddc92b4e2053e804407f80ffde9a4b57d1dbd07095d47f6651dc0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Controller/SpecialtyController.php":{"size":6336,"mtime_ns":1782844333713927668,"hash":"84c72c8da1f6fc901ef1b8c75accdfed1fb314c943d3b81a1d031c26f79aacf9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Entity/Specialty.php":{"size":2698,"mtime_ns":1781085518712241650,"hash":"683f2375f3d9528dd02e9cbfe7bd344ff51208aff0ef02dfed3d576c3460a1f7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Specialty/Repository/SpecialtyRepository.php":{"size":2293,"mtime_ns":1781636247076888517,"hash":"9b991dc48c3a9c42baad98f553ee0fa395c4b596f65e84230420929f3e32e6c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Controller/StaffController.php":{"size":5842,"mtime_ns":1781522583734490612,"hash":"8b6ad6acaf1a93214344464c7dcc3b9792720118a1c0963340f639a87de43264"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Entity/ClinicStaff.php":{"size":4240,"mtime_ns":1781516938581704629,"hash":"95c3df6b577ad88a80af1bec2e17b48c6d7b9f35b1a8f75490d0a1bfbc940fee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Staff/Repository/ClinicStaffRepository.php":{"size":1179,"mtime_ns":1781516938581849755,"hash":"d83ac7466427c09ca77b63924a66dd5710c8ecc9ba3b6dbdeecc4648940a711b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Controller/SubscriptionController.php":{"size":11185,"mtime_ns":1781522583734953988,"hash":"65a467e75d34ebf32f56e45ca5aafffb2a0560dcaf538b6e5d962b46b3265718"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/ClinicSubscription.php":{"size":4057,"mtime_ns":1782728407203534324,"hash":"a21caf7417e2a32180b91b4fe18ac8245f2b0aeb8887104b2739771151a37350"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPeriod.php":{"size":3806,"mtime_ns":1782728407203839326,"hash":"0121bf60210628bcbb1cbe89419eddfd71b29c65debdbd3dbce51e2d2632c75b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Entity/SubscriptionPlan.php":{"size":3867,"mtime_ns":1781516938582569339,"hash":"ea26b39ca447321dcd1a8f9b199a6b8e2b82c67814754709ea47570066ed15e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":1780,"mtime_ns":1781516938582726506,"hash":"b5459ccb551f37c349aab40fef73ac8f33414ba9f130289f284595c7b3e14622"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPeriodRepository.php":{"size":954,"mtime_ns":1781516938582865590,"hash":"726666fe5f74b8a9927376e82af264b70b209a4e86d164061eb7a9b1d9440942"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/SubscriptionPlanRepository.php":{"size":1084,"mtime_ns":1781516938582984965,"hash":"1f4ddab7ada6116daee3a80a2b4ded6c8b84612e036cc16621211616ea9cb2e2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4048,"mtime_ns":1781516938583134340,"hash":"1ccd90f5a75d47aad2155484d487cf0dfceb319ec0b9ae4f45a30cb931e5e031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Controller/TagController.php":{"size":4239,"mtime_ns":1782844396159141068,"hash":"f4aa363cf77d90bfca146bffb70b496661bd3e4822fc2502a6bd390c84b15bc8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Entity/Tag.php":{"size":1775,"mtime_ns":1781085585665970564,"hash":"cd3edf2f90d5bdd70487b38e085a751cb578a9cb2395086bbe2964e5dbd1996d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Tag/Repository/TagRepository.php":{"size":967,"mtime_ns":1781085592043241382,"hash":"283d4f4300d6202a7ab924d3bf130f7b2d90716a520b6d40ba35edd27cc88059"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Controller/UserProfileController.php":{"size":12912,"mtime_ns":1782289553079211479,"hash":"9d2e310f94dcbde48859dea9872428189b32d7f415af52e6aa5eb523c446fed7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Entity/UserProfile.php":{"size":9546,"mtime_ns":1782650883615317561,"hash":"d65393c833dec86f7dae8413a72b3a6cd0cc75f3e7faf36bb02995d72b463bb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/UserProfile/Repository/UserProfileRepository.php":{"size":1267,"mtime_ns":1782270252112779103,"hash":"d36f160a81c8fa1927ea604fb2c27f0ed0f1b33507d838e28adf9fa1fa3b6fcd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/BillingCalculatorTest.php":{"size":3007,"mtime_ns":1782214545731907969,"hash":"85b469b70480541f73092cf1593029c76fb703bdaf77f71327a0f25ecffd7924"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/bootstrap.php":{"size":248,"mtime_ns":1781009800080637813,"hash":"57ff9294703e34a685f28cd3c0e46ab54a5dd3f4fe3356c224e3aed0958269d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tsconfig.json":{"size":423,"mtime_ns":1782729422588693047,"hash":"53fac6b4a0917eecde4dc3efc021cceca3d48600d9cfb58a3d4c946135751c66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-pwa.md":{"size":9407,"mtime_ns":1781343171405896374,"hash":"f6294cbb97d2ca4465b4f185c394daabb11f6ddacc29c2d471decb04da8c7265"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ui-kit-redesign.md":{"size":10577,"mtime_ns":1782232921465705417,"hash":"24c6ca8b5c2e6f9b9783d446829be9cd4ffe5c6b550e0754d2d4521555382892"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-user-detail-show-profile.md":{"size":9288,"mtime_ns":1781549990210378142,"hash":"629f80e928f666143a4f251067bb31a4f866773e509f34b6c2d623580424e3aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-detail-enrich.md":{"size":4876,"mtime_ns":1781636247075313849,"hash":"a846f9cb4c0d643d7488873cd7a27a15adf39c8b1a206a371efdd0bedb472612"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointment-lock-patient-confirm.md":{"size":16770,"mtime_ns":1781535498213998370,"hash":"0a79349da76f2fe2c50e76e3add06522ea796a255722386426e7b7edf988637e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-day-of-week.md":{"size":15777,"mtime_ns":1781192992528836012,"hash":"73bc57098ab8816c91d042649840e5d34f5d00f096aa88b4bd3d5b9501b749b4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/appointments-redesign.md":{"size":24082,"mtime_ns":1781173659296708465,"hash":"fe28753bae9a95b192796f18322282909e707d96f00082b8d1ce655b47d2aa2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/build-homepage.md":{"size":4205,"mtime_ns":1781248910704293609,"hash":"4dda73a4d2f91de3fa5b641c559cf509ba8b87ec4621bf2e8eeedea3f9927412"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-detail-fixes.md":{"size":3514,"mtime_ns":1781286844618120218,"hash":"2cecd1fb0904f3aff92545007b33eb4bf970efd7b03cff7c53e6ca73dd2ef9e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-doctor-deactivate.md":{"size":15114,"mtime_ns":1781257376721043348,"hash":"6b36b95516cd5fafc100a500b72fc98d68992d8cb07c02160a09f827e2fb58e9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-social-media-field.md":{"size":5746,"mtime_ns":1782034582969356341,"hash":"01a6fc5a55d6357607e36837cd39a6ed646f4097fd4ba944ababf826cd1f0ff4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-view-doctor-profile.md":{"size":6746,"mtime_ns":1781361314655405808,"hash":"b7d523d90f08ea239fa8b03eae601cf68353be6f45c0192762cabfef28c55e67"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-patient-without-signup.md":{"size":5271,"mtime_ns":1782145462624789979,"hash":"5bf24921d4002ea348e38c87cc81bc08ef8e169924787c3c719bac9d3e62d4a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/create-phase2-tasks.md":{"size":24506,"mtime_ns":1781516938546554807,"hash":"f3d49625dfa644a00f6cd5a582e52d63bfefbd2db875f25164774a71cf345ecd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-booking-window-and-month-availability.md":{"size":12511,"mtime_ns":1781535414057585490,"hash":"505938967d29a4e337e18cb22f2a299f97e5e452e05c9b94a9e409c86107f23c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-clinic-address-access.md":{"size":10705,"mtime_ns":1781362104619727130,"hash":"657c686420a8a45159812178f8a65dbc317591779844dc26b3921c536f92de8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-profile-page.md":{"size":8799,"mtime_ns":1781175765248517513,"hash":"f1078372d9fc8eaa9196ec9840ce187d86a27b723a1c218cf872cc4e4ede5d3e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-social-media-field.md":{"size":6783,"mtime_ns":1782031213435560461,"hash":"072cbab44fe86ab89e7a46724b8631528acdd63ae0c3aee2526ab408e1c021d7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-access-scoping-doctor-clinic-representation.md":{"size":14171,"mtime_ns":1781863132633307507,"hash":"8ad2e8c5d53e8f34d69e1b4fd6ce71775720cee430130043803bc44f903341e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-auth-token-hardening.md":{"size":12680,"mtime_ns":1781946301827134938,"hash":"a52ecdd96fda0f396864de78704f6c53efb9982debb51f4ea1a4494007f925cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-bugs-and-features.md":{"size":20820,"mtime_ns":1781516938546940516,"hash":"c45843d9ef701e2b73f7cd161083ffe23d315d81b68382ed4f9f45feb642c6dd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-filter-by-address-location.md":{"size":6683,"mtime_ns":1781674935483152098,"hash":"b5aa923fc81b1ab79f29f7f02401dcfc56b88ce6bbcf0c5e015200000d7ae6d6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-clinic-patient-auto-add.md":{"size":4991,"mtime_ns":1782145525259778908,"hash":"9dcfac3aba7cdb8101c97017973a1bf7e4217f0d8df94b9dcbd1bda10192263b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-city-via-clinic.md":{"size":5124,"mtime_ns":1782040974660614329,"hash":"a3571d2085a8c4aa6cdc7094b964fbf54281b482a064cbf368f623dc5fda26c4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-schedule-fields.md":{"size":10822,"mtime_ns":1781523041417094452,"hash":"7ceaad108bd7bcec35b9271f73308586072e8fe12be63b1dc754e5ec902bfa1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-search-performance.md":{"size":13253,"mtime_ns":1782046573636729825,"hash":"febfb8452181a0ee429a6c1383b489ca071afe45ffb617b9343e9a406ca02d0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-guest-doctor-clinic-context-access.md":{"size":9535,"mtime_ns":1781890240620846065,"hash":"dbcabb830aa0a81fc529eb14feeec65afdd979ac4eb7ce31c80eeb22b2166166"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-invitation-accept.md":{"size":4399,"mtime_ns":1781360063617429536,"hash":"2bc99d1a7460fdf5be3711a0add4de54d4ab78a0fc16079680d4da58e4615997"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-profile-in-clinic-context.md":{"size":8367,"mtime_ns":1781365327185378947,"hash":"f063eae11f94b2132d84b0a8472bac1d4d404a2bfbfacb049f0c583f9c586219"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-side-mobile-nationalcode-validation.md":{"size":8677,"mtime_ns":1781945049606053409,"hash":"32049409986f11fd29d302dc3e1036cab7172ae9033c3901e0622e8171fda14a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-switch-context-role.md":{"size":7032,"mtime_ns":1781363356184798552,"hash":"74cb88449b93fd682e3ac81a322e1d405d54e111e172758e5b10ca80437e1a3b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-backend.md":{"size":23991,"mtime_ns":1781516938547317892,"hash":"ba39a2e1ccfbc1a98662ecc71225aa32583a410df8e238dad15de69a62fdb521"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/implement-phase2-frontend.md":{"size":28042,"mtime_ns":1781520442021329832,"hash":"4faf26a0b91c83a3c183e3ed929d5d2dc92e7624549af170165bbf2faa9eec2b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pages-subscription-gating.md":{"size":8256,"mtime_ns":1782258337653428004,"hash":"3755a25eb7694c8c1587bfad9e02166c438ab4bd361268126cfe0f3ee553bbb7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-pricing-and-selects-cleanup.md":{"size":7612,"mtime_ns":1782253591735960479,"hash":"00ca797277e9520885bf056e719721e9d72d97c4000fbd9f8bcd69980a5bd69d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/insurance-visit-pricing.md":{"size":6483,"mtime_ns":1782214545719956341,"hash":"4197cd316ec7560bb084840cd96f82df6d524916d4a4ec4a0f71108c2cdbec6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/location-clinic-address.md":{"size":15649,"mtime_ns":1781257855652300954,"hash":"c147a47466d89f4591d1efff242e3ec90e1b979463cc2d2ce5f65bd55002b770"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mark-past-slots-unavailable.md":{"size":7754,"mtime_ns":1781535427967339672,"hash":"51d4e6c59bbcf69395fb0d0a1420f5c47f5c3ea5bf77e95b3180fef5e2081fed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/multi-role-dashboard.md":{"size":47174,"mtime_ns":1781164462782884121,"hash":"bdbb8f8d4f66f36005c2c7e87f123d905c49048dba266e475c775b73d438b434"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/my-payments-list-endpoint.md":{"size":6964,"mtime_ns":1781539108766134646,"hash":"5c6b5a4fff2796f32393914512d82d2cf18fe1a2bb5c70f7087c6152451e2ce9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/national-code-unique-profile.md":{"size":9589,"mtime_ns":1782270001832720420,"hash":"4bac96e773838ee4ef912cca328f84ce957deb6c594c1a00016b305380c93112"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/new-visit-modal-ux.md":{"size":5602,"mtime_ns":1782145407253133698,"hash":"5ec3558c752110146df788f8f2f85025c4ff17876ace24f8de0b2208013a622b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/patient-record-profile-binding.md":{"size":5004,"mtime_ns":1782145573523412851,"hash":"5195bc67dec077d35f5220df58a5c2ffbb62fd44c881cc9e51d8aa53a08d065b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-test-mode-ui.md":{"size":7973,"mtime_ns":1781516938547896351,"hash":"a37f514022aea65c1e8d35c8855c087e0913c650a642cabdd39f9690577d8cd1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-unified-status-canceled-and-managed-hosts.md":{"size":11866,"mtime_ns":1781591920505562932,"hash":"32799eaded7c02d109b78be529dc0ecc8b7fc0b500326573428a365e21869b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/pre-registration.md":{"size":12415,"mtime_ns":1781252082262696147,"hash":"b1857341551ffad0b98d9d867f3caeeb8924c5b903099e9f2823620efa8eecc6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/profile-birthday-jalali-persist.md":{"size":4796,"mtime_ns":1781597628367003291,"hash":"e90db79d423bcbe97680ffed422228037e2843e8169bb1188237f7f6b6babbd6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-bug-audit.md":{"size":10008,"mtime_ns":1781892497314247088,"hash":"63ca9f918e24b1c15839c13744045e0b8aac212279b5b4fbfa5ae619b7709804"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-multidimensional-and-rich-comments.md":{"size":12831,"mtime_ns":1781557035802767573,"hash":"332d9f393aee67c403841f184f3e6c069edaeb4459b4ee328a9310055f937cef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/rating-require-recent-confirmed-appointment.md":{"size":9517,"mtime_ns":1781557035802942698,"hash":"305ff640dad68d7e842a5825bbf7a8f4cdb02b145eed8b782c1151db3305632e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-admin-panel-access.md":{"size":16498,"mtime_ns":1781857058512546863,"hash":"72c1500ed688169cfd796adcf9554b63994849119943dba5d5a70883eb5a8dce"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-commission-tax-engine.md":{"size":21994,"mtime_ns":1782292728412115840,"hash":"ca8cb1567b8434a59f5717a4b33c6ea142e69f4d1010df15010081905b556669"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-domain-guard-dashboard-settlement.md":{"size":16314,"mtime_ns":1782304099038050829,"hash":"be8842b5ac2c5a57277b047c4c6ac3f828ae302dc6a94569e8f46760564b90d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-identity-iban-verification.md":{"size":17082,"mtime_ns":1782399022752193648,"hash":"59271ef71e8e71f9f1bb9dcde1aea41565a2dbef6ed9aa8d35b1e7202c685f38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/schedule-cancel-expired-appointments.md":{"size":8800,"mtime_ns":1781551622406496621,"hash":"43d63ab1fbae2e6e2d5192d922a09293b1abbadddfe98819e39671dc00e04a99"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-context-scope.md":{"size":14283,"mtime_ns":1781520442021272248,"hash":"e684ae83cc15db840406769e15852b219ceff63405fe6064bde19263b2fccfdc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-realistic-data.md":{"size":14531,"mtime_ns":1781519566626148059,"hash":"6b2eea6f45404e64d2b8b3998a117e8bada7517c880339af1fc4ff72cd0409d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-coverage.md":{"size":4046,"mtime_ns":1782214545720279342,"hash":"3ff0f0f6b3a99f5facadc19ce455b27c8cea3020038a1b40bdebda4fdbaf84f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/service-insurance-per-insurer-coverage.md":{"size":14249,"mtime_ns":1782259799527430466,"hash":"295cae74decafadb2379fac86ac7ac1f420042d715f798d5024b03362560363d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-log-tags.md":{"size":15685,"mtime_ns":1781870909734605934,"hash":"abe301d83cba0655c353e32c6f55a9bf20dc808d033c9f5d1e40f8fa9ad5bd62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-login.md":{"size":9252,"mtime_ns":1781255737102412820,"hash":"af6300f99ef2e66cad5abf34a421e4c3f2d34995535a907f82aa86cfe4c29b74"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/specialty-doctor-counts.md":{"size":6533,"mtime_ns":1781636247075492016,"hash":"32a97260ea56f3bd9529a034cbb791df59ce29ca60d9966a24d469cb743fee41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/subscription-gate-ui.md":{"size":17009,"mtime_ns":1781520442075008039,"hash":"81757bb902f7ddb74f51b2aa43612d9c73fbe20abebbc2f046a6014498f9b58f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sync-user-realname-from-profile.md":{"size":6614,"mtime_ns":1781594222051658800,"hash":"b9ee6559e409596b698b855fe4ff283fac5a062a218b4aea42a3b09d14a8fd0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-darkmode-polish.md":{"size":9534,"mtime_ns":1781520979984254456,"hash":"9f195ed3dccbf8df6079d978142aac339fa50d0b949526fc1b7b832af151da1a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/ui-ux-pages-redesign.md":{"size":18980,"mtime_ns":1781520442021457666,"hash":"2dce360a15f48c97610df47e5e6fbeea313e39fdc152e0d55bf687ec17784e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/user-profile-resolve-by-user-uuid.md":{"size":9637,"mtime_ns":1781537870411647855,"hash":"880cbf5c1bbd64937f4a197a91cdedf9c742bb3910ab2104cfb6c59e8cc7ba0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/prompt-writer/SKILL.md":{"size":5151,"mtime_ns":1781361052504791267,"hash":"abe2c711bf0a283fe50a70e5180d0ed7c7e10f7b699ceb50b4701485cf7b74bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/skills/run-prompt/SKILL.md":{"size":9443,"mtime_ns":1781176103482888341,"hash":"bc8c63ca2411b0ed4242f54f4a998590698d1cc62ef9b2661a84668ed1e80689"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/CLAUDE.md":{"size":8393,"mtime_ns":1781551622406854747,"hash":"1712a6a680cb00c102367be014ced75a77306c0c8ac1fbccec95f37ed31cff4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/TEST_USERS.md":{"size":4101,"mtime_ns":1781520709654384302,"hash":"ae97e1e0de7fdd1d8dccf030c996f155262259cbd648b71d4834436f90827910"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/Architecture_Audit.md":{"size":33583,"mtime_ns":1780948937761931658,"hash":"e79771047616dbb7a604687b92ffcd47f09dc19a112fa51174cc2738a0e5c49b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ClinicPro_Manual_v2.md":{"size":228782,"mtime_ns":1780944864742215753,"hash":"86c808b50dd3da1c5107e4b6a3a03190f30c643643ad6de4c89b2045f803baee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/prd.md":{"size":28619,"mtime_ns":1781520442203119936,"hash":"a1691fe2f87737cd12253bac3bfda2f8feeaabc15a159a8dce6482eea7fd6e8e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/PRD/pre_prd.md":{"size":5454,"mtime_ns":1781516938560096835,"hash":"4736bcde5ba8e7c73405d0e7c31b6e2651b65d475e4cb9a924ae152b799bc4f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/ui-design-spec.md":{"size":20687,"mtime_ns":1781024129379257560,"hash":"60176b60869538ed763bfd4b0d02c138481811e62482b73c41693ea5393e8460"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/admin-ui/user-flow.md":{"size":16280,"mtime_ns":1781022482742007613,"hash":"aad348887a0347a4d348eb228959ef9e44099e2c4e60959d0dc06d976ebe7e16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/README.md":{"size":3621,"mtime_ns":1781158395412841916,"hash":"8ddb00666307b307dcaba4c0b7b4f4c13e5f31502f7d20d5c3a8a82729c606b8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/admin.md":{"size":29605,"mtime_ns":1782750435771295635,"hash":"6b0c84481084c4920b085db292f903c4d296f1bc05b91e906e5917ad517660f3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment-settings.md":{"size":16574,"mtime_ns":1782728407106610964,"hash":"540be837def81a7c24a001654fde543de78f168ba34ed839c6e6fd597ea55ed6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/appointment.md":{"size":16822,"mtime_ns":1782728407107114384,"hash":"7b39650f7266519461983913a0c78e186275d036101a827049dd6f8c3574707e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/auth.md":{"size":18998,"mtime_ns":1782728407107527803,"hash":"3ef75b524c4a8eb4748ae652659d5849cf3a6359015216d8f24b3a0f555efc6e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/billing.md":{"size":10078,"mtime_ns":1782728407107896681,"hash":"c9f6afebfd6b6f7a7e55bf1d14c8123f9230a99fc566c63aa9cb4d01b6204324"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/blog.md":{"size":5522,"mtime_ns":1782050526553302749,"hash":"fc22dc80387b6c8f477854a19dfe01e496b90b688020325f1df589e0ae5cab8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-invitation.md":{"size":9237,"mtime_ns":1781360269658725816,"hash":"50b040f0cc844000cdf24ba7971b4bfe4367e7980413f2dd90d7187a4e0c9991"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic-services.md":{"size":6228,"mtime_ns":1782728407108299892,"hash":"d03260630a54476e8c29c60a2eb6540abb203d81d7656a95fbb1381344ad1a00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/clinic.md":{"size":14733,"mtime_ns":1782035382888801592,"hash":"f92d6767717fca87e08884cee26a75a77b5ff8278bf0f6a0219245b3028130ca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/dashboard.md":{"size":6099,"mtime_ns":1781516938560827336,"hash":"8368266c4453ba5364ed0787679059288d98527506bf05a44f86b5a31a7e0a6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-service.md":{"size":3542,"mtime_ns":1782844893680414173,"hash":"e89e263e5bbc843f579006c3b353fe521d9366fc228515e8a5e596321c8c0c42"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor.md":{"size":13600,"mtime_ns":1782728407108632102,"hash":"9b489729903535dc83ff137376247c057a7b537da0e8ad41d7a62c7163119c63"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/insurance.md":{"size":14620,"mtime_ns":1782844893680930170,"hash":"777ea6859a4a038025bff4fd5619e698c213fb174f40b4f41292b07a7bf12dd2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/location.md":{"size":5612,"mtime_ns":1782844893679649261,"hash":"227d1effa16cd5595068babf19b0174e3931c7bb0396c50a4aed29998f059e41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/patient.md":{"size":11646,"mtime_ns":1782289600489452444,"hash":"37294299886dbe4d8227c8fdc5afea62f50755e0fd42f229eedc58f1a036abb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/payment.md":{"size":12945,"mtime_ns":1782897235657184751,"hash":"b5759107f3ded3c713da1d09e1f1fa5c69e8a8a5453f8740d8c18ffdc73462a4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1782728407110670616,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":21174,"mtime_ns":1782728407111252662,"hash":"5885967c5170bf2400f9732554f43375edc13e81715385df337db7eeea45295f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/secretary.md":{"size":11082,"mtime_ns":1782902968293482660,"hash":"8a4df85eba0a0da8f2a31f07cb8ed2b182bae88bc4530db5c743bd012bc4bbed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/settlement.md":{"size":9976,"mtime_ns":1782728407112458962,"hash":"ad88d08fd6960cb9bfd932b91def2ad395a50c391f7692e9ec30fa4dab681722"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/sms.md":{"size":14822,"mtime_ns":1782902976009701024,"hash":"65894c26cf873fc088a90507142ec0b847f06b22d2ab0840f7901f138c08550c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/specialty.md":{"size":4869,"mtime_ns":1782844893680226216,"hash":"8f43fadb8c8754ab788dc183df3538096cfffc5d7a542fde683d8fffee10fafb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/staff.md":{"size":3093,"mtime_ns":1781516938562286131,"hash":"b3690ab9cdd530eb6a0180f96f08a258ccae0c77d31416e80f49a92974eac730"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/subscription.md":{"size":5356,"mtime_ns":1781516938563076716,"hash":"0bfc1f146132195c74357b078df7c099d0dbff2c90ed2bd65f5f5c476dec793b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/tag.md":{"size":3045,"mtime_ns":1782844893681057377,"hash":"4044766bce277cb59476fa2c470b399018dafd94191893c53aca75291de87b7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/user-profile.md":{"size":7549,"mtime_ns":1782289592597934192,"hash":"5d269afd10ce9174f3ac63fb4fdcf1cb7272564925db2d3f5f7e75df50c42925"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/architecture/insurance-billing-system.md":{"size":22566,"mtime_ns":1782214545723920606,"hash":"afec1678fc22a9caa8f39eb9fac3f934751dcd6a315ac1441f1378193b88ba0b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/architecture.md":{"size":4831,"mtime_ns":1781516938563423092,"hash":"589134d822642da7433ffa06823f4e2c79ad74e3feb135df95e581377b01ffd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/database.md":{"size":2045,"mtime_ns":1781516938563622759,"hash":"580ede75d18ef6d8117ef56ab233775e5143bc25de4716cfaf53464bdaeac599"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/task.md":{"size":2775,"mtime_ns":1781516938564295343,"hash":"b55eb66cf597d5665d57d79f268a2fc106da8a8e01c18d7f8da2327da6dc7927"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-10-staff/user_flow.md":{"size":3553,"mtime_ns":1781516938564465635,"hash":"c5436837b9320d6cb9e5f50e7e6b7aeaaa8bdb8dc9a68fa4b5f4b22fdd58002a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/architecture.md":{"size":6182,"mtime_ns":1781516938564667844,"hash":"97af6c2e032264f5dd128efc6ec07a4c1c23664f325cba46bc7dca9da57b9578"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/database.md":{"size":4694,"mtime_ns":1781516938564824594,"hash":"3b798be28cfff874d1b09b25429767e7c928e7c0fd9a9db2a9685f429b299299"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/task.md":{"size":5322,"mtime_ns":1781516938564985928,"hash":"46d7f8870c6b9f46071a717d0235dceffd7d25508ca4f69886e5062c8b37d0e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-11-subscription/user_flow.md":{"size":5889,"mtime_ns":1781516938565157637,"hash":"d11628bbcd90efc0d3d09961a2ed62fe3707c3f5b60bbbfcc615da3b7180acd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/architecture.md":{"size":2393,"mtime_ns":1781516938565327637,"hash":"d036ecddd7c889f68aac644919fb9255189de2f82cd62e3933b860bc348d34a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/database.md":{"size":1646,"mtime_ns":1781516938565469596,"hash":"bb7eaeece88f414ea6253e95b2acbbdbbf74396c5e51b213301593f2aa5d409c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/task.md":{"size":6288,"mtime_ns":1781520442208567994,"hash":"f18a2edba4a0b75fef8e08e155a4cf100b8a98e463acf88d31d506c195f5b27b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-12-secretary-completion/user_flow.md":{"size":3821,"mtime_ns":1781520442059890701,"hash":"72aca8c6bba58695e7e1b63a3aa709d1068753beb31b981c648564fb822e4fec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/architecture.md":{"size":3719,"mtime_ns":1781516938565894180,"hash":"c2c7361b57f654925f2801d0820f78bbbb97dfbd07c808b4ec304f7938139151"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/database.md":{"size":2673,"mtime_ns":1781516938566026680,"hash":"de17f21b92fb807651d65288c8539699aad5597b8e541e47c9bce4dd0f97b696"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/task.md":{"size":2931,"mtime_ns":1781516938566167056,"hash":"87038a0b3a2f872944d232bcf66eb5fab7676f00a9d29319c082a4b576a1fc40"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-13-clinic-services/user_flow.md":{"size":4046,"mtime_ns":1781516938566343181,"hash":"4bce3394d64f2c1d3441cd2c3ad717670d1c91817b9015db00aa9ae4eead4f66"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/architecture.md":{"size":5145,"mtime_ns":1781516938566580015,"hash":"14afd5263c7d520a89f36bbba8c8a1884f88df74d09afe4caf7464025ee25063"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/database.md":{"size":3803,"mtime_ns":1781516938567109641,"hash":"2a952887767f9f9811df0c99a9bc2ba9986defd5ea1caf3ed11080ce11c61f1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/task.md":{"size":3454,"mtime_ns":1781516938567288849,"hash":"5badde1225cf74657f886825aaaae8582c1c627570f655ae9f631144bc75d7a9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-14-sms-panel/user_flow.md":{"size":4630,"mtime_ns":1781516938567444933,"hash":"8e4bcbd2fd0a486d4942df7ced8131738816487d2c16f0a05730d4c190a10296"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/architecture.md":{"size":6622,"mtime_ns":1781516938567688975,"hash":"138a7655a0efa500b4a9a8f829bebbdff35803cb3abfd3da7f4d4f362d7b63c9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/database.md":{"size":5463,"mtime_ns":1781516938567863767,"hash":"1dceb66c7a12a35660145fdf3bf0bbe4d5b8275f5b45bf86cbba4cf80f64675a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/task.md":{"size":4809,"mtime_ns":1781516938568156268,"hash":"1222b425e9e9856e291b8fb39c28348287dbafcf7b0a30531c5bab8642d2cb17"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-15-patient-records/user_flow.md":{"size":6283,"mtime_ns":1781516938568370060,"hash":"e28725b4fd619e8e105951b570c0066efb23fd6f378c1939bbe5cfcdad47b2d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/architecture.md":{"size":3095,"mtime_ns":1781516938569635604,"hash":"6494802db54a411d47ce102df7a5584c1e7db3482aad69df967bf1ca71c5ba58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/database.md":{"size":1971,"mtime_ns":1781516938569893480,"hash":"ec0826918bb413f88d2d989f514b0c75a8cb932d11476d2c6e46908ce87968e8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/task.md":{"size":2630,"mtime_ns":1781516938570195856,"hash":"19bc98b5866f489ff0cafdb3533f2698de3546aef26ad438d16beb2d7218c859"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/phase2_taskes/task-16-smart-dashboard/user_flow.md":{"size":5110,"mtime_ns":1781516938570362314,"hash":"3572f80a2a4741eeaa91c80e9c362bd8ff452c14c4d1f052efad6467db72ce60"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/bug-report-2026-06-20.md":{"size":6123,"mtime_ns":1781932195178136627,"hash":"12f46177c25b3354d11d67086bea1387dfc7c630aa26c3ae766c680f2843640e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/security-audit.md":{"size":17685,"mtime_ns":1781029533522601843,"hash":"a4ff28a805763f65454696132ecea7011101bc37b1b6517222f1c75daf450ab1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/README.md":{"size":3380,"mtime_ns":1780914526335796118,"hash":"defeedb0410731f689fba5e8e2c6f3e35b8bf9e5e284dad43313a1184b58b1ae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/architecture.md":{"size":4379,"mtime_ns":1780948878189677238,"hash":"01cbb020665bc50a95519b010c5cb4bdcda727e5e3b11144854ea69380bba84d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/database.md":{"size":2777,"mtime_ns":1780913653761675119,"hash":"6ad045e9dcec53f77822e126640dacb6bd22ac3baee94373331ba46567bf37f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/implementation_notes.md":{"size":11109,"mtime_ns":1781000268522993445,"hash":"7fcefe550ef23683ee4ed703af2881fb5c985930b4d1a3ab7c93a74ef491bdae"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-01-project-setup/task.md":{"size":15372,"mtime_ns":1780948866192116618,"hash":"311edd5597e787245e16d25b061f5faccd468d3d7a63ebb05bb04e26b3c7218e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/architecture.md":{"size":2897,"mtime_ns":1780913716805987120,"hash":"ee14b45989f69598f9862c975c097e7c3cb720c2bb06967b9787307e7acfe361"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/database.md":{"size":4381,"mtime_ns":1780945850080810308,"hash":"d1ce5e67b210864664df658d7de16fc479948f90164e90c89f53c33ee6de069a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/implementation_notes.md":{"size":4894,"mtime_ns":1780945075278630018,"hash":"8074b8f1bfe41c918b96cb9ab1c78937bf5986feb3ebe9db3c3ca7af88d7dc2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/task.md":{"size":14847,"mtime_ns":1781000259106649518,"hash":"500d89358f6bf99cb445fcb71f0fe67afc142c3c607ccfb030cbcbea8409883e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-02-authentication/user_flow.md":{"size":2706,"mtime_ns":1780915019246111035,"hash":"03ed965fb14b51c065108f4eeca9672f20e8090195fcc442de5c5c60c950ec10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/architecture.md":{"size":2719,"mtime_ns":1780913810512596011,"hash":"1a83b9b76c0687098bffc9471e7fb2c51a97be4939347bd11990d55fc290fbe9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/database.md":{"size":4620,"mtime_ns":1780945096397670031,"hash":"8d639d843c5d51531781080fa6179168662a5cbd22af7ea828e770823d374c00"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/implementation_notes.md":{"size":2408,"mtime_ns":1780913848138283491,"hash":"5a60299e3ce86373b2ae7c2e0efdc5fb85b753123cc45bb09e0c9d671d396811"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-03-user-profile/task.md":{"size":2503,"mtime_ns":1780913798113112926,"hash":"f00a38d5a28420b3a8fda800286352a56f0f98b190ec67e57e1d971debae3bef"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/architecture.md":{"size":1757,"mtime_ns":1780913877006618619,"hash":"e63b0d01ec3714992eefec62777ee965be7af2a59d55a9e72cf87effac0f4a8f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/database.md":{"size":2332,"mtime_ns":1780917970043029189,"hash":"ae2d7fd401bce729cba77a040a613a7f8fe0e9b20e8d4a31eaa970451296a001"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/implementation_notes.md":{"size":4727,"mtime_ns":1780945968298846841,"hash":"92f49568f1ecb690bef8287e9455ef0b2ed56d897309ea6b8a580fa667f8a5f6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-04-blog/task.md":{"size":1962,"mtime_ns":1780913865638451815,"hash":"2884592d17fcc3363768f899a4371d0ff2f25bc05bf4ab378647224aac695fc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/architecture.md":{"size":6624,"mtime_ns":1780915477914900899,"hash":"180c8f1b3163d1c97e3add7912571278ce7d53477095695010024be863743ee8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/database.md":{"size":7593,"mtime_ns":1780917946898365021,"hash":"00d19e027d60b4461e43310d6445f95fab85d7b6ba26ba946e44ea001556b0d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/implementation_notes.md":{"size":2375,"mtime_ns":1780913973933789015,"hash":"1fa793e81dd07304171c11a760104acd6802dbeec00363618f5d4c1e651668ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-05-doctor/task.md":{"size":6294,"mtime_ns":1780946040236355543,"hash":"042d405bfc9f389c3f4031533534485742dabdcfe86b4d753c0cc052a755f1f5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/architecture.md":{"size":1851,"mtime_ns":1780913996728031516,"hash":"6cb465ec4509143b1ff168e629400684e18542a7c1f616f5885f1c4f8be7876f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/database.md":{"size":3657,"mtime_ns":1780926795107362628,"hash":"6ae9c1c5e9c833a0781878a60323428b3388dc46dfdb5620d649371d98c03f36"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/implementation_notes.md":{"size":1042,"mtime_ns":1780914015153456807,"hash":"5bb3da0cf9daf5a64f1316e32f20d5a24d70ae5a639bc0d4b62a2667a6742b19"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-06-clinic/task.md":{"size":5429,"mtime_ns":1780946101876308203,"hash":"709ac2fb057f4d470a55c5e47dc0bbda7f38f6a336622fd93be0e334019ee066"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/architecture.md":{"size":1985,"mtime_ns":1780914070674333692,"hash":"b6839bd6197cc3e53162104e0ccddcb4c0dad2d268815ce71e50591dd58dcaea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/database.md":{"size":3623,"mtime_ns":1780917987390393019,"hash":"6a1ac2b1feeec574386ab34b5176b6c069ee3582e7152757e4693e18440d0365"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/implementation_notes.md":{"size":1244,"mtime_ns":1780914095217341542,"hash":"fa7fd9bc9193bd89ed8e6438a3538bb8ba6aac5dbc8859735887b8a2a876956a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-08-categories/task.md":{"size":1912,"mtime_ns":1780914058797929168,"hash":"4a40fbf276a9595d6be7409e5b8ec3ce0963f7cff1ae1acdbbd8e2a8962f0f76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/architecture.md":{"size":3399,"mtime_ns":1780914129817089915,"hash":"b75f451ea0018239fff4ace9a06e486880409d0015582b1aa5f843b4ff14d9ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/database.md":{"size":4225,"mtime_ns":1780915919108824849,"hash":"07a565453b405723fef58584dc058518729c7d27e873492d8a3cea7e7de0d690"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/implementation_notes.md":{"size":3094,"mtime_ns":1780945173910875440,"hash":"c75e7608c3765170173b475dc5b2b224c663e6c116cecadf38107efdc86d6878"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/task.md":{"size":2582,"mtime_ns":1780914114135141253,"hash":"48422a947301ff86b51f11c3168ec190bfa7f9dcc10821abd5ce5b9a460979ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-09-appointment-settings/user_flow.md":{"size":2191,"mtime_ns":1780914171627644777,"hash":"07b7bc5971ab5201243c5bdf67eb2d111629753dd697034c85e92c96d1008809"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/architecture.md":{"size":1996,"mtime_ns":1780914199549617529,"hash":"289adc397ac626b52b89755bfe8648fab0d7afbbdca30005de728b7697b9a214"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/database.md":{"size":3717,"mtime_ns":1780915937514717817,"hash":"88321d5b96f7d4a6b8e1704430500c45915eb2e259eef363d95f26de72109092"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/implementation_notes.md":{"size":4621,"mtime_ns":1780915380116156578,"hash":"a83b0c475c907a8d8a30ed2d0ca711db33f60fb1e61c202b76bc4731a5bf8243"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/task.md":{"size":8716,"mtime_ns":1780948491117865920,"hash":"da3cd77c8f2c7ad9129a69ccf1f8dc2317dc91a1dd956cf2f042b65361be6395"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-10-appointment/user_flow.md":{"size":1550,"mtime_ns":1780914238340850115,"hash":"9f5dce77e5f9988bba7dfcc621622610a49a42e0b065b884bab56b56661cd84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/architecture.md":{"size":1127,"mtime_ns":1780914261808559537,"hash":"375e8ddd7ec2c6078760759c4501a4cfbfa68fafd7835fb01fb77ec9e63edae3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/database.md":{"size":1786,"mtime_ns":1780945194993545294,"hash":"d839d386d4403610f52b0415868efd6ee3555dc5b209d13ec923975ec4bb799f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/implementation_notes.md":{"size":682,"mtime_ns":1780914277970139742,"hash":"9f0f9dc9c02d7e8672e66bf856526f7b0ed7956b926665bf807466cb5be8ae97"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-11-insurance/task.md":{"size":1020,"mtime_ns":1780914250465105891,"hash":"6dd946fad62474b45da1077a795263188685817d871a6fe6a7a48686e24d6193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/architecture.md":{"size":2188,"mtime_ns":1780914305970064998,"hash":"5fdcb2df78dd410d0c2d434203efb1e7a932ef9e9a17270a252584779e59f6cb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/database.md":{"size":3810,"mtime_ns":1780915977159314990,"hash":"2fdfac8ae3f0fc238d5398ffcc770d33470901fe1d371043f2762ca15a0c6e50"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/implementation_notes.md":{"size":5724,"mtime_ns":1780946157194396377,"hash":"df382ed8eb807a193bfc884447401cd87c9a678f6ecb95a0a246468cc9311851"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-12-rating-comment/task.md":{"size":3935,"mtime_ns":1780946250306428313,"hash":"fa4fc2ef76c08670eae962ffd0a3836d7cce4469bc5f407cebff751c025e5c7b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/architecture.md":{"size":974,"mtime_ns":1780914349899858832,"hash":"a0adb45cf9f78498055809006e340318b4ca21e6f8627ecbcdcac2205f3f7b29"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/database.md":{"size":1630,"mtime_ns":1780926837375006318,"hash":"3d670c92b56d80fa1da6b751fda3b776da46ea368106339d1b80dd6012e01d2a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/implementation_notes.md":{"size":596,"mtime_ns":1780914363412821531,"hash":"d49115b6d3c76aec3c3678cc86c6ef5b394e8e63d96e493479bc79db4cd8558c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-13-like/task.md":{"size":475,"mtime_ns":1780914338292873383,"hash":"0f032e0490838820a0692ba9c0042dadce5a9558d87083874219c84dcde92742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/architecture.md":{"size":1308,"mtime_ns":1780914379600079656,"hash":"17eba56cf557f9cf9d6300b9946fe25cd348fd937bd20914ba382b1a760112aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/database.md":{"size":1827,"mtime_ns":1780926849934970617,"hash":"46384e53c3b5bd73ef416c647833213a49f5eaefdd7a6c63c4227cf54e5e8aa6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/implementation_notes.md":{"size":849,"mtime_ns":1780914395413759232,"hash":"432b4d0ed90802ae1dd2495e54a2493f60f07ca0ca57a7e68734ff493b2c8031"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-14-secretary/task.md":{"size":9039,"mtime_ns":1781000115337852359,"hash":"322eeb47d17aa1d34573f1daab3e4e6aaaa6c89a6c97bb7be08ea4e10c475f16"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/architecture.md":{"size":1945,"mtime_ns":1780914418815337658,"hash":"434ff7a1e4e0cb8d175321f3af647ef5276602ed753c9ca9c3c9480a7456d53c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/database.md":{"size":5305,"mtime_ns":1780946202243066788,"hash":"86fdf19600fc6c72961d37e60d2f056f9012b1b26d0fddac2a6d31b15295f105"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/implementation_notes.md":{"size":3038,"mtime_ns":1780915087810785770,"hash":"1fbc6a5462ddb25a89b765941b2c4eebae1b3c2e62cf5dbf48bc48015b79e6ab"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-15-payment/task.md":{"size":8918,"mtime_ns":1780948846758672237,"hash":"ae564ca5b8f57b3e399f6996c978ed63e5d2425342b6d9dc6eb0b29c90fa2da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/architecture.md":{"size":1957,"mtime_ns":1780915416796818495,"hash":"9ed187252c771e6fbbbc24009d84f0fe52b4c3f565b16413ffd753c16c1793d2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/database.md":{"size":2934,"mtime_ns":1780917918423562169,"hash":"bc18f2996973b821a4c393e627028ca7212b1bb769a7faf122fd0b7f4fc4da10"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/implementation_notes.md":{"size":4833,"mtime_ns":1780915404939572215,"hash":"b8c731a6b5e06985b3179372e17bf6b678fd4bccf0f2a488cec7b842ecd56798"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-16-representation/task.md":{"size":4814,"mtime_ns":1780948110250153184,"hash":"ecf2f1d6b695c256805cea006ad4ea2c64d4419dba5da0e8a862ddcb78c185d8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/database.md":{"size":2141,"mtime_ns":1780945235470226049,"hash":"4ef4177ff9c455909dc4d2d64ef4ee2fd8e1d5eaef1bda53fe9fed7923809e1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/implementation_notes.md":{"size":1864,"mtime_ns":1780945250993937969,"hash":"75cfb72ca7fff3f679ed78b75fb7cc251344cba57d46d4926a1ff24c61a18193"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-17-sms/task.md":{"size":14473,"mtime_ns":1781000201191461921,"hash":"b4a1a494a5417c78db3a85dc80fa158db77860e74eee9337fb15a5f5052f829f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/database.md":{"size":3780,"mtime_ns":1780948101369445086,"hash":"8c43bfccc6aafad28eebd86afc5b32f56ca6db3dc081b796567f4c95824df146"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/tasks/task-18-settlement/task.md":{"size":4116,"mtime_ns":1780948080182510614,"hash":"33696ec512d7848300e8575d2a387e09a90153045860fed8b8f2c5632b6592f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/entrypoint.sh":{"size":1468,"mtime_ns":1782633219516893494,"hash":"48c33a7c55c256a65ba4c089893e1112aea5b1320c9dc6b46f4eadb865b68ae4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/frontend-domains.json":{"size":2348,"mtime_ns":1782410142646593892,"hash":"dc12d68e32830d446995ea2a8cf98fe0bc24e15d4b6b0b27dd5b97dc84b06568"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/gen-cors-env.php":{"size":1941,"mtime_ns":1782410159219136761,"hash":"cee724b4cbfc04771874ccdf454cb5bf04dcf63d16955f9e11357390e3a65c6b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docker/healthcheck.sh":{"size":443,"mtime_ns":1782647901237410548,"hash":"b4d2a6f75f334c832e9a015b4e296f3fb9210f128b2b1b40bfe74abf6e6babc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628133044.php":{"size":1747,"mtime_ns":1782728407177086438,"hash":"5c24097f68a7696b4ae58ba6df68b6ace4f508b1f0ebf3e964fff23661c8ea0a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628134241.php":{"size":1159,"mtime_ns":1782728407177374107,"hash":"c31886c1f10dd25296b56fb7ba336f1fc45aa45d6627ab6bdb148f18d49872ee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628152738.php":{"size":1873,"mtime_ns":1782728407177652192,"hash":"d7a00a9e505a45fe1056cde539a8cbefcb42f67a0c3755427d77ba12959e0c4c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153625.php":{"size":882,"mtime_ns":1782728407177952152,"hash":"b314e4f194586cb9b4037fb48ab8400a307ce428def8108b94616a263e24e238"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628153855.php":{"size":1146,"mtime_ns":1782728407179127785,"hash":"1ec80db45af56adf7be93c412e0165c70fb629dde2ccc09b06a3452a66c52c05"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628165710.php":{"size":809,"mtime_ns":1782728407179735539,"hash":"cca05740bf26d1540b361283f5a140aeb446bd717250615b7ed040977788dab6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260628173151.php":{"size":1639,"mtime_ns":1782728407180333627,"hash":"b8bbe9ad2ce3faae637534db20bfc455e288bc2c5fb3a1b9a10f4a29db2432aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/CreateAdminCommand.php":{"size":2428,"mtime_ns":1782649564990017265,"hash":"2fd1cffeb4d8299abb1a5fda3d9f29a08c882ff6e66781dffbc038ff675906c8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Insurance/Service/TenantInsuranceCleanupService.php":{"size":1874,"mtime_ns":1782728407197355450,"hash":"19f366c81466bfebfd37cd2310f8602b243cf5111e51308892e196b7d5a7dc4e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ApiTestCase.php":{"size":2923,"mtime_ns":1782728407205043418,"hash":"6ec92ce7ac31774fec6ceb5e33a073d6cdbe06044221f38e4939f99270fe8bfb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentExpiryServiceTest.php":{"size":2163,"mtime_ns":1782728407205393295,"hash":"5586072347e23a24fddaa187efeb93d702697b7cdd1a399909239684cf371372"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/AppointmentSettingsListOwnershipTest.php":{"size":1592,"mtime_ns":1782728407205827923,"hash":"1ffb3b0a89f531658a75520df810efc7e18022e106a75d885d92986d62ba74e7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/BookingScopeTest.php":{"size":1653,"mtime_ns":1782728407206108967,"hash":"395161c96b8a660dab252a12c063090de94131b66d672c3b8804d70800327451"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/DateOverrideOwnershipTest.php":{"size":1259,"mtime_ns":1782728407206489928,"hash":"10dfd3691f16464f1d16a317942a53046f5369260a74ce133960d1b1f30218aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/ScheduleOwnershipTest.php":{"size":1721,"mtime_ns":1782728407206779055,"hash":"f935dde55aaa34b8c10780019e1c8ee7f5733c602874cc951411737dc9691329"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Appointment/SlotUniquenessTest.php":{"size":2475,"mtime_ns":1782728407206954431,"hash":"0168f3c381e9da2663e2cf118fd67f5b90d2ea6e4e96433e3d05a567248961f4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Audit/LowTierFixesTest.php":{"size":1517,"mtime_ns":1782728407207202432,"hash":"6d65ac794b959d7b177dfd5ed9792082e5f79a073b0cda79be8503b689edc907"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/RefreshTokenTest.php":{"size":1924,"mtime_ns":1782728407207460101,"hash":"745716b0c8627a1f72fed9305b2dc70af84c14ed015ff3341bd3c6422ea63c87"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Auth/SendCodeMobileRateLimitTest.php":{"size":1421,"mtime_ns":1782728407207651102,"hash":"f069f1c427ffbeb082d3777ae8da34e031e940e4a0c79e5da4e80708345890aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimAmountBoundsTest.php":{"size":1863,"mtime_ns":1782728407207878645,"hash":"0b7551406b5b0c2fe47812614e3edbf359b72ef3c0f16b12466e387c5bdbb041"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListNPlusOneTest.php":{"size":1782,"mtime_ns":1782728407208062397,"hash":"dcf666e9d1a149bf85e0ef7869083bceec48bd8ba95958292878d73f7e330467"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Billing/ClaimsListPaginationTest.php":{"size":1215,"mtime_ns":1782728407208282107,"hash":"3d81e096e779dc685eed5920d7fef419ebf2c96e96794ae8d6222daeb0dea7e3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemDeleteCleanupTest.php":{"size":1598,"mtime_ns":1782728407208527691,"hash":"f9809dce56ba099731d9fbf6e1da781c18acc49a758537002868a7db3efad7b1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/ClinicService/ServiceItemStaffOwnershipTest.php":{"size":1464,"mtime_ns":1782728407208738276,"hash":"e8b808423b34ee5471e7d00407f94ed22593e06ed6c4e674f92e972ed0e8718f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Database/UniqueConstraintsTest.php":{"size":2595,"mtime_ns":1782728407208978278,"hash":"aeaae84730fbdecfb8337f25283653d3867d3cf50332e7bea917c946672c97cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/ClinicDoctorListNPlusOneTest.php":{"size":2457,"mtime_ns":1782728407209223988,"hash":"705820b9d1590cf2f642e6ee7391a651536104c92acf39f261e2df71516ed55a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorAddressOwnershipTest.php":{"size":1313,"mtime_ns":1782728407209479490,"hash":"8fde8b4d6db03191fc8d650bf86fa6962956b504013b76a55c4e5ae791e47c38"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctrine/RepositoryClassMappingTest.php":{"size":1573,"mtime_ns":1782728407209727575,"hash":"5289139754fae16d85a09fcff134ceef249968876f029c180f36b1c7d53bf5d5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/DoctorInsuranceOwnershipTest.php":{"size":1486,"mtime_ns":1782728407209989701,"hash":"9231aaeffd13bf27869e74186679ddd38d1f6ebc9c52d36a8dad9b589bea3ad0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/ServiceCoverageNPlusOneTest.php":{"size":3714,"mtime_ns":1782728407210225203,"hash":"dd8ffa7d6329453fa49a9403b95a13556ad08dd318c89733a202d9d6c8ecfa4f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Insurance/TenantInsuranceCleanupTest.php":{"size":3021,"mtime_ns":1782728407210448121,"hash":"986643979f19f6a7ee71127782524852eb9eb163b77db793253e95b8df534675"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/PaymentCallbackAmountTest.php":{"size":3356,"mtime_ns":1782728407210719081,"hash":"1b32d36a573652e1860ae2ceaf20ead7eee9cef0c204c9d4875ce8926849e278"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentListNPlusOneTest.php":{"size":3794,"mtime_ns":1782728407210931374,"hash":"473c67b119935570a66ab5e75cc36311f04ce314729e75bf44fd337bacbc4535"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Rating/CommentPaginationTest.php":{"size":1836,"mtime_ns":1782728407211216876,"hash":"7d11e7ba342faf3c69e5844c1adab2aa7583b201737d16e0724d9233d00ad1e6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/RepresentationCommissionTest.php":{"size":2548,"mtime_ns":1782728407211506878,"hash":"26b9f23b2462b30adea512eeb07f92f4db597a60c0ed3610a4169bd22f7c6c26"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Secretary/SecretaryListNPlusOneTest.php":{"size":1592,"mtime_ns":1782728407211848922,"hash":"bce8c0d2597c3641885ba9322eb03bada116d979e3bd7a0b4c90d5208fdd620c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/FinancialBreakdownIntegrityTest.php":{"size":1173,"mtime_ns":1782728407212105424,"hash":"3e987494345d3a7c1cc90de7b27bfcac7bc45bb54e8fa0a7a3f790bdfa406aaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/SettlementListPaginationTest.php":{"size":957,"mtime_ns":1782728407212820054,"hash":"74501df43886dc66c5fe19f849549a2194644dc948d94856f97d0af17c0d179c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Settlement/WalletTransactionsPaginationTest.php":{"size":1087,"mtime_ns":1782728407213026555,"hash":"8df4dfce9a91d73297d88f22e047a4127fee2b00e2fe1bc8f43eed2ff805fae9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/ErrorCodesTest.php":{"size":1547,"mtime_ns":1782728407213280973,"hash":"bf392c01cd7a70c25efe7c4ad59ffdb4579b1216576d58393c3a965524360f0c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Smoke/InfraSmokeTest.php":{"size":1444,"mtime_ns":1782728407213624767,"hash":"d8d4a8c5688d7ed7168570bfc39c3cf038e2c43324498dff3239f5668afa0a1f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/doctrine_object_manager.php":{"size":479,"mtime_ns":1782728407213800685,"hash":"7a99fb0ab55d30b31cdebe923546775d6372a0aa6e731b409c37fb8f98671f5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-adapt-backend-audit.md":{"size":8798,"mtime_ns":1782728407083687268,"hash":"f7e83133c40658496827e06f6182a995ccaff35018d83b7ee8aa32aba25a03fb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-docker-production-hardening.md":{"size":13443,"mtime_ns":1782647901236299599,"hash":"74228033d085f739ed39f615762ad721c6b3678122d0afc3f988676c4b514589"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-symfony-deploy.md":{"size":18877,"mtime_ns":1782409236333930026,"hash":"a81d0aa4535ae4be51f69d47c5101f7a72415654ded3889e01f1baf98718715a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/full-backend-audit.md":{"size":11545,"mtime_ns":1782728407084760233,"hash":"448fb57a5fdadd9bb3176b1570c0421b6459bbf2a5bd69bd4154246ae0c61285"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/home-landing-copy-and-mobile.md":{"size":11823,"mtime_ns":1782728407085277028,"hash":"596043e27126b0500ddbd861f0e7a8c17681ca49b3381da382458f2bc2355b09"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/split-db-redis-to-coolify-resources.md":{"size":12357,"mtime_ns":1782632977626228125,"hash":"6d87685ede07fb029b01d211fa82bdb7311bde9eb31ee9869992e6c49da5c75f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/DEPLOY.md":{"size":11539,"mtime_ns":1782647901238565498,"hash":"39797d5439fd4fd0fd19ae7a5b033febf0fbf6b58d07fdd1750d3aa2799b9163"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/audit-backlog.md":{"size":19190,"mtime_ns":1782728407113021215,"hash":"63afb7aaff2eb3113700644ab9bbfa07562ccec38cba4c77c0f21cd9acb98706"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy/coolify.md":{"size":10378,"mtime_ns":1782410984792896284,"hash":"f1d06d336c14b8df1530ec41dd80021b40e7113be0895504f9dda70b112a1cdf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Controller/SeoController.php":{"size":1860,"mtime_ns":1782728407203067196,"hash":"df1028d7b1b294928a318cc7c27de5ca99b00d583d81ef6f400494c22380b6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara.json":{"size":638,"mtime_ns":1782743447395127690,"hash":"337416608afe2e6e989bfd903bb5bca1e977e6f8eb5cc02ca05a46bbda53edc4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_build.sh":{"size":559,"mtime_ns":1782735663785720587,"hash":"d9b9232a0f115eb1d752c2b149a5224ea030fd04d3c92ab964d53a6701d5e0a7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/liara_pre_start.sh":{"size":1063,"mtime_ns":1782747838542662883,"hash":"c5d143014bb281d056f6c286cf66faa4894b059584cceeacd150b01648cbde52"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-spa-test-suite.md":{"size":19691,"mtime_ns":1782728407084188354,"hash":"73ad644cede4254811fab6f825750f127edb1b5f08b8bad25b99b85c097a9556"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-docker.md":{"size":14106,"mtime_ns":1782732118990034632,"hash":"1a5f6f8bba054ea974f99dc5c01aeb19ed1cf612c3fd18a700bc03beaded2b5d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/deploy-liara-php.md":{"size":13353,"mtime_ns":1782735439025822952,"hash":"39f30d7c6d20b1869f5f06b2b532071e94b264f4bddf248c3cf84c62159ed86c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara-php.md":{"size":10664,"mtime_ns":1782736008651392836,"hash":"65c93d7d9e14dd468b75c5c81dee1ae6438d267253e8ad295953d3746d68d250"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/deploy-liara.md":{"size":8919,"mtime_ns":1782732335270881309,"hash":"ade1392f7cf72c544736a765b03140858e45cc5f12a480cd03ba4628af17e84b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260629161536.php":{"size":1115,"mtime_ns":1782749766472631367,"hash":"c0e9b10f345c3d894d27267c90618903fab9693fd4be3542a755fbed3787fcba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLog.php":{"size":1707,"mtime_ns":1782749711194459630,"hash":"5b3237552e7ae040e5a3b2a289e8fc0f0518a1df84553665ea214efd36c2321d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/AppLogRepository.php":{"size":321,"mtime_ns":1782749721788872841,"hash":"467e207cc4ef518da9d34cbc907c3de3ffc355fcd67f30c3155fe38624853f8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/DbLogger.php":{"size":3546,"mtime_ns":1782749810227775663,"hash":"4d5328c774fe4619eb75f9de434173ae4a4b5ca53f7729383399b12c2a222805"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Admin/AdminLogsTest.php":{"size":1600,"mtime_ns":1782750195979032925,"hash":"a8f899cc061053e5664833c2ebcbf1fe2613c8d5b150973bb95e621750267c61"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/DbLoggerTest.php":{"size":1768,"mtime_ns":1782749879165982208,"hash":"48db5c733cc7e02a8a226fc4ed552cd5282c91d400dc72b32f3f122c127033bf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/project-wide-logging.md":{"size":14450,"mtime_ns":1782749549958444881,"hash":"3970d300cb4b804fed477773b47b653edb7aa3754b8cefd0e3f7d31a49417e6f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Controller/CategoryImportController.php":{"size":3511,"mtime_ns":1782843840412881578,"hash":"721aecace95083433388fa4205e063cb45867b202d5430f44c1b0bbb1faa4465"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Category/CategoryImportTest.php":{"size":3925,"mtime_ns":1782839178845925849,"hash":"03c15491170644124dd399b100bbac0982d3ffad86ccffa9a2b9f4076bfabaad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5124,"mtime_ns":1782844030493510597,"hash":"d7c221bd66dc2ed13630b80966c57f9f824126dfcff92928ea41a28441d30879"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":44977,"mtime_ns":1782843868773038823,"hash":"4f34d9f9f45c9a445f12116cf0ee77b9105dfe11673bb77f0595861febc7851e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/doctor_services.json":{"size":46716,"mtime_ns":1782843868777989827,"hash":"3a5610d926bb9581c868449c387e80feef104aec7c9bdc6ed39835e87c287015"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/provinces.json":{"size":4364,"mtime_ns":1782843868770610383,"hash":"c28e9c29f212ac946af73f8122b545bd3761766ebc2c8e0a47567ef6a9fc5197"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/specialties.json":{"size":18764,"mtime_ns":1782843868775505763,"hash":"9bcf8a9b8f83e159a290b14c13b17b485185812c9e53ef62df4e33f84b216e47"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Command/SeedCategoriesCommand.php":{"size":2775,"mtime_ns":1782843891881834765,"hash":"13a71e6dab76fcb921270b6e2f996145b78e3c09d69b38592612a879707d87dc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Category/Service/CategoryImporter.php":{"size":11150,"mtime_ns":1782843813843439598,"hash":"de00c98fc50b71185668d058a3f4bcba79db6ce8f9cf9d11bc4647fa24470a1c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/production-fixes-cors-payment-gateways.md":{"size":15490,"mtime_ns":1782896794174529460,"hash":"4a016b326e836f770e919fd1f5d3bf3f5f70fc4dd7aa9676c198e9b7e63f7b91"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/qa-full-system-audit.md":{"size":15299,"mtime_ns":1782894418024832296,"hash":"8cccd87e3d45acefda119c2e63b85e013e60943b2524a9bc2e9b62074c9bb9f2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/secretary-welcome-sms.md":{"size":8951,"mtime_ns":1782902722286387081,"hash":"05b7b6fbd16251df4d8049e99a7692e0fe3245c4f8ad6f0188e7f0b79fb92f4d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-settings-apikey-env-only.md":{"size":16545,"mtime_ns":1782893768608578413,"hash":"dada8658d0861aa23bbca638f3f832a420d16699a71a02d2dc6358bac834538e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/qa/full-system-audit-report.md":{"size":18928,"mtime_ns":1782896060811421986,"hash":"0053ebf6c21b4a5da087f668332ebdacbceef6a781cd3767155d08647b165b9d"}} \ No newline at end of file diff --git a/graphify-out/graph.json b/graphify-out/graph.json index c6aa1ed4..0155fe43 100644 --- a/graphify-out/graph.json +++ b/graphify-out/graph.json @@ -70,7 +70,7 @@ "source_location": "L1", "_origin": "ast", "id": "components_freevisitprice", - "community": 21, + "community": 13, "norm_label": "freevisitprice.tsx" }, { @@ -80,7 +80,7 @@ "source_location": "L7", "_origin": "ast", "id": "components_freevisitprice_pricing", - "community": 21, + "community": 13, "norm_label": "pricing" }, { @@ -90,7 +90,7 @@ "source_location": "L9", "_origin": "ast", "id": "components_freevisitprice_freevisitprice", - "community": 21, + "community": 13, "norm_label": "freevisitprice()" }, { @@ -210,7 +210,7 @@ "source_location": "L1", "_origin": "ast", "id": "components_tenantinsurancecontracts", - "community": 19, + "community": 33, "norm_label": "tenantinsurancecontracts.tsx" }, { @@ -220,7 +220,7 @@ "source_location": "L9", "_origin": "ast", "id": "components_tenantinsurancecontracts_contract", - "community": 19, + "community": 33, "norm_label": "contract" }, { @@ -230,7 +230,7 @@ "source_location": "L20", "_origin": "ast", "id": "components_tenantinsurancecontracts_insuranceoption", - "community": 19, + "community": 33, "norm_label": "insuranceoption" }, { @@ -240,7 +240,7 @@ "source_location": "L26", "_origin": "ast", "id": "components_tenantinsurancecontracts_kind_label", - "community": 19, + "community": 33, "norm_label": "kind_label" }, { @@ -250,7 +250,7 @@ "source_location": "L31", "_origin": "ast", "id": "components_tenantinsurancecontracts_tenantinsurancecontracts", - "community": 19, + "community": 33, "norm_label": "tenantinsurancecontracts()" }, { @@ -390,7 +390,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_appointmentstatusdropdown", - "community": 49, + "community": 2, "norm_label": "appointmentstatusdropdown.tsx" }, { @@ -400,7 +400,7 @@ "source_location": "L8", "_origin": "ast", "id": "ui_appointmentstatusdropdown_status_meta", - "community": 49, + "community": 2, "norm_label": "status_meta" }, { @@ -410,7 +410,7 @@ "source_location": "L18", "_origin": "ast", "id": "ui_appointmentstatusdropdown_transitions", - "community": 49, + "community": 2, "norm_label": "transitions" }, { @@ -420,7 +420,7 @@ "source_location": "L23", "_origin": "ast", "id": "ui_appointmentstatusdropdown_props", - "community": 49, + "community": 2, "norm_label": "props" }, { @@ -430,7 +430,7 @@ "source_location": "L30", "_origin": "ast", "id": "ui_appointmentstatusdropdown_appointmentstatusdropdown", - "community": 49, + "community": 2, "norm_label": "appointmentstatusdropdown()" }, { @@ -497,7 +497,7 @@ "label": "SkeletonRow()", "file_type": "code", "source_file": "assets/admin/components/ui/DataTable.tsx", - "source_location": "L25", + "source_location": "L28", "_origin": "ast", "id": "ui_datatable_skeletonrow", "community": 3, @@ -507,7 +507,7 @@ "label": "DataTable()", "file_type": "code", "source_file": "assets/admin/components/ui/DataTable.tsx", - "source_location": "L37", + "source_location": "L40", "_origin": "ast", "id": "ui_datatable_datatable", "community": 3, @@ -550,7 +550,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_invitedoctormodal", - "community": 13, + "community": 452, "norm_label": "invitedoctormodal.tsx" }, { @@ -560,7 +560,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_invitedoctormodal_inviteschema", - "community": 13, + "community": 452, "norm_label": "inviteschema" }, { @@ -570,7 +570,7 @@ "source_location": "L17", "_origin": "ast", "id": "ui_invitedoctormodal_inviteform", - "community": 13, + "community": 452, "norm_label": "inviteform" }, { @@ -580,7 +580,7 @@ "source_location": "L19", "_origin": "ast", "id": "ui_invitedoctormodal_props", - "community": 13, + "community": 452, "norm_label": "props" }, { @@ -590,7 +590,7 @@ "source_location": "L25", "_origin": "ast", "id": "ui_invitedoctormodal_invitedoctormodal", - "community": 13, + "community": 452, "norm_label": "invitedoctormodal()" }, { @@ -670,7 +670,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_notificationmobilecard", - "community": 13, + "community": 2, "norm_label": "notificationmobilecard.tsx" }, { @@ -680,7 +680,7 @@ "source_location": "L8", "_origin": "ast", "id": "ui_notificationmobilecard_notificationmobiledata", - "community": 13, + "community": 2, "norm_label": "notificationmobiledata" }, { @@ -690,7 +690,7 @@ "source_location": "L12", "_origin": "ast", "id": "ui_notificationmobilecard_props", - "community": 13, + "community": 2, "norm_label": "props" }, { @@ -700,7 +700,7 @@ "source_location": "L16", "_origin": "ast", "id": "ui_notificationmobilecard_notificationmobilecard", - "community": 13, + "community": 2, "norm_label": "notificationmobilecard()" }, { @@ -710,7 +710,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pageheader", - "community": 11, + "community": 77, "norm_label": "pageheader.tsx" }, { @@ -720,7 +720,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_pageheader_crumb", - "community": 11, + "community": 77, "norm_label": "crumb" }, { @@ -730,7 +730,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_pageheader_props", - "community": 11, + "community": 77, "norm_label": "props" }, { @@ -740,7 +740,7 @@ "source_location": "L17", "_origin": "ast", "id": "ui_pageheader_pageheader", - "community": 11, + "community": 77, "norm_label": "pageheader()" }, { @@ -1010,7 +1010,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pwainstallbanner", - "community": 2, + "community": 635, "norm_label": "pwainstallbanner.tsx" }, { @@ -1020,7 +1020,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_pwainstallbanner_pwainstallbanner", - "community": 2, + "community": 635, "norm_label": "pwainstallbanner()" }, { @@ -1030,7 +1030,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_pwalogincard", - "community": 2, + "community": 635, "norm_label": "pwalogincard.tsx" }, { @@ -1040,7 +1040,7 @@ "source_location": "L6", "_origin": "ast", "id": "ui_pwalogincard_detectios", - "community": 2, + "community": 635, "norm_label": "detectios()" }, { @@ -1050,7 +1050,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_pwalogincard_pwalogincard", - "community": 2, + "community": 635, "norm_label": "pwalogincard()" }, { @@ -1060,7 +1060,7 @@ "source_location": "L1", "_origin": "ast", "id": "ui_searchableselect", - "community": 19, + "community": 33, "norm_label": "searchableselect.tsx" }, { @@ -1070,7 +1070,7 @@ "source_location": "L5", "_origin": "ast", "id": "ui_searchableselect_selectoption", - "community": 19, + "community": 33, "norm_label": "selectoption" }, { @@ -1080,7 +1080,7 @@ "source_location": "L10", "_origin": "ast", "id": "ui_searchableselect_props", - "community": 19, + "community": 33, "norm_label": "props" }, { @@ -1090,7 +1090,7 @@ "source_location": "L23", "_origin": "ast", "id": "ui_searchableselect_searchableselect", - "community": 19, + "community": 33, "norm_label": "searchableselect()" }, { @@ -1274,11 +1274,31 @@ "norm_label": "usepaymentconfig.ts" }, { - "label": "usePaymentConfig()", + "label": "PaymentGatewayInfo", "file_type": "code", "source_file": "assets/admin/hooks/usePaymentConfig.ts", "source_location": "L5", "_origin": "ast", + "id": "hooks_usepaymentconfig_paymentgatewayinfo", + "community": 11, + "norm_label": "paymentgatewayinfo" + }, + { + "label": "PaymentConfig", + "file_type": "code", + "source_file": "assets/admin/hooks/usePaymentConfig.ts", + "source_location": "L10", + "_origin": "ast", + "id": "hooks_usepaymentconfig_paymentconfig", + "community": 11, + "norm_label": "paymentconfig" + }, + { + "label": "usePaymentConfig()", + "file_type": "code", + "source_file": "assets/admin/hooks/usePaymentConfig.ts", + "source_location": "L16", + "_origin": "ast", "id": "hooks_usepaymentconfig_usepaymentconfig", "community": 11, "norm_label": "usepaymentconfig()" @@ -1290,7 +1310,7 @@ "source_location": "L1", "_origin": "ast", "id": "hooks_usepwainstall", - "community": 2, + "community": 635, "norm_label": "usepwainstall.ts" }, { @@ -1300,7 +1320,7 @@ "source_location": "L3", "_origin": "ast", "id": "hooks_usepwainstall_beforeinstallpromptevent", - "community": 2, + "community": 635, "norm_label": "beforeinstallpromptevent" }, { @@ -1310,7 +1330,7 @@ "source_location": "L10", "_origin": "ast", "id": "hooks_usepwainstall_usepwainstall", - "community": 2, + "community": 635, "norm_label": "usepwainstall()" }, { @@ -1490,7 +1510,7 @@ "source_location": "L88", "_origin": "ast", "id": "lib_api_apiresponse", - "community": 11, + "community": 3, "norm_label": "apiresponse" }, { @@ -1530,7 +1550,7 @@ "source_location": "L3", "_origin": "ast", "id": "lib_utils_formatrial", - "community": 21, + "community": 13, "norm_label": "formatrial()" }, { @@ -1660,7 +1680,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_adminsubscriptionpage", - "community": 11, + "community": 542, "norm_label": "adminsubscriptionpage.tsx" }, { @@ -1670,7 +1690,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_adminsubscriptionpage_reportrow", - "community": 11, + "community": 542, "norm_label": "reportrow" }, { @@ -1680,7 +1700,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_adminsubscriptionpage_planschema", - "community": 11, + "community": 542, "norm_label": "planschema" }, { @@ -1690,7 +1710,7 @@ "source_location": "L40", "_origin": "ast", "id": "pages_adminsubscriptionpage_planform", - "community": 11, + "community": 542, "norm_label": "planform" }, { @@ -1700,7 +1720,7 @@ "source_location": "L42", "_origin": "ast", "id": "pages_adminsubscriptionpage_periodschema", - "community": 11, + "community": 542, "norm_label": "periodschema" }, { @@ -1710,7 +1730,7 @@ "source_location": "L51", "_origin": "ast", "id": "pages_adminsubscriptionpage_periodform", - "community": 11, + "community": 542, "norm_label": "periodform" }, { @@ -1720,7 +1740,7 @@ "source_location": "L55", "_origin": "ast", "id": "pages_adminsubscriptionpage_feature_labels", - "community": 11, + "community": 542, "norm_label": "feature_labels" }, { @@ -1730,7 +1750,7 @@ "source_location": "L62", "_origin": "ast", "id": "pages_adminsubscriptionpage_feature_keys", - "community": 11, + "community": 542, "norm_label": "feature_keys" }, { @@ -1740,7 +1760,7 @@ "source_location": "L64", "_origin": "ast", "id": "pages_adminsubscriptionpage_emptyfeatures", - "community": 11, + "community": 542, "norm_label": "emptyfeatures()" }, { @@ -1750,7 +1770,7 @@ "source_location": "L67", "_origin": "ast", "id": "pages_adminsubscriptionpage_plan_display", - "community": 11, + "community": 542, "norm_label": "plan_display" }, { @@ -1760,7 +1780,7 @@ "source_location": "L75", "_origin": "ast", "id": "pages_adminsubscriptionpage_switchtoggle", - "community": 11, + "community": 542, "norm_label": "switchtoggle" }, { @@ -1770,7 +1790,7 @@ "source_location": "L88", "_origin": "ast", "id": "pages_adminsubscriptionpage_planstab", - "community": 11, + "community": 542, "norm_label": "planstab()" }, { @@ -1780,7 +1800,7 @@ "source_location": "L365", "_origin": "ast", "id": "pages_adminsubscriptionpage_reporttab", - "community": 11, + "community": 542, "norm_label": "reporttab()" }, { @@ -1790,7 +1810,7 @@ "source_location": "L431", "_origin": "ast", "id": "pages_adminsubscriptionpage_adminsubscriptionpage", - "community": 11, + "community": 542, "norm_label": "adminsubscriptionpage()" }, { @@ -2130,7 +2150,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_blogformpage", - "community": 19, + "community": 2, "norm_label": "blogformpage.tsx" }, { @@ -2140,7 +2160,7 @@ "source_location": "L17", "_origin": "ast", "id": "pages_blogformpage_schema", - "community": 19, + "community": 2, "norm_label": "schema" }, { @@ -2150,7 +2170,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_blogformpage_formdata", - "community": 19, + "community": 2, "norm_label": "formdata" }, { @@ -2160,7 +2180,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_blogformpage_uploadblogimage", - "community": 19, + "community": 2, "norm_label": "uploadblogimage()" }, { @@ -2170,7 +2190,7 @@ "source_location": "L46", "_origin": "ast", "id": "pages_blogformpage_blogformpage", - "community": 19, + "community": 2, "norm_label": "blogformpage()" }, { @@ -2280,7 +2300,7 @@ "source_location": "L44", "_origin": "ast", "id": "pages_categoriespage_logouploadfield", - "community": 41, + "community": 0, "norm_label": "logouploadfield()" }, { @@ -2310,7 +2330,7 @@ "source_location": "L136", "_origin": "ast", "id": "pages_categoriespage_tabactions", - "community": 41, + "community": 0, "norm_label": "tabactions()" }, { @@ -2347,7 +2367,7 @@ "label": "citySchema", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L367", + "source_location": "L371", "_origin": "ast", "id": "pages_categoriespage_cityschema", "community": 41, @@ -2357,7 +2377,7 @@ "label": "CityForm", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L381", + "source_location": "L385", "_origin": "ast", "id": "pages_categoriespage_cityform", "community": 41, @@ -2367,7 +2387,7 @@ "label": "CitiesTab()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L383", + "source_location": "L387", "_origin": "ast", "id": "pages_categoriespage_citiestab", "community": 41, @@ -2377,7 +2397,7 @@ "label": "specialtySchema", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L571", + "source_location": "L579", "_origin": "ast", "id": "pages_categoriespage_specialtyschema", "community": 41, @@ -2387,7 +2407,7 @@ "label": "SpecialtyForm", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L577", + "source_location": "L585", "_origin": "ast", "id": "pages_categoriespage_specialtyform", "community": 41, @@ -2397,7 +2417,7 @@ "label": "SpecialtiesTab()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L579", + "source_location": "L587", "_origin": "ast", "id": "pages_categoriespage_specialtiestab", "community": 41, @@ -2407,7 +2427,7 @@ "label": "serviceSchema", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L695", + "source_location": "L707", "_origin": "ast", "id": "pages_categoriespage_serviceschema", "community": 41, @@ -2417,7 +2437,7 @@ "label": "ServiceForm", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L701", + "source_location": "L713", "_origin": "ast", "id": "pages_categoriespage_serviceform", "community": 41, @@ -2427,7 +2447,7 @@ "label": "DoctorServicesTab()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L703", + "source_location": "L715", "_origin": "ast", "id": "pages_categoriespage_doctorservicestab", "community": 41, @@ -2437,7 +2457,7 @@ "label": "insuranceSchema", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L816", + "source_location": "L832", "_origin": "ast", "id": "pages_categoriespage_insuranceschema", "community": 41, @@ -2447,7 +2467,7 @@ "label": "InsuranceForm", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L821", + "source_location": "L837", "_origin": "ast", "id": "pages_categoriespage_insuranceform", "community": 41, @@ -2457,7 +2477,7 @@ "label": "InsurancesTab()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L823", + "source_location": "L839", "_origin": "ast", "id": "pages_categoriespage_insurancestab", "community": 41, @@ -2467,7 +2487,7 @@ "label": "tagSchema", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L946", + "source_location": "L966", "_origin": "ast", "id": "pages_categoriespage_tagschema", "community": 41, @@ -2477,7 +2497,7 @@ "label": "TagForm", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L950", + "source_location": "L970", "_origin": "ast", "id": "pages_categoriespage_tagform", "community": 41, @@ -2487,7 +2507,7 @@ "label": "TagsTab()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L952", + "source_location": "L972", "_origin": "ast", "id": "pages_categoriespage_tagstab", "community": 41, @@ -2497,7 +2517,7 @@ "label": "CategoriesPage()", "file_type": "code", "source_file": "assets/admin/pages/CategoriesPage.tsx", - "source_location": "L1038", + "source_location": "L1062", "_origin": "ast", "id": "pages_categoriespage_categoriespage", "community": 41, @@ -4550,7 +4570,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_loginpage", - "community": 0, + "community": 13, "norm_label": "loginpage.tsx" }, { @@ -4560,7 +4580,7 @@ "source_location": "L9", "_origin": "ast", "id": "pages_loginpage_mode", - "community": 0, + "community": 13, "norm_label": "mode" }, { @@ -4570,7 +4590,7 @@ "source_location": "L10", "_origin": "ast", "id": "pages_loginpage_smsstep", - "community": 0, + "community": 13, "norm_label": "smsstep" }, { @@ -4580,7 +4600,7 @@ "source_location": "L11", "_origin": "ast", "id": "pages_loginpage_forgotstep", - "community": 0, + "community": 13, "norm_label": "forgotstep" }, { @@ -4600,7 +4620,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_logspage", - "community": 13, + "community": 33, "norm_label": "logspage.tsx" }, { @@ -4610,7 +4630,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_logspage_level_meta", - "community": 13, + "community": 33, "norm_label": "level_meta" }, { @@ -4620,7 +4640,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_logspage_level_filter_options", - "community": 13, + "community": 33, "norm_label": "level_filter_options" }, { @@ -4630,7 +4650,7 @@ "source_location": "L30", "_origin": "ast", "id": "pages_logspage_logspage", - "community": 13, + "community": 33, "norm_label": "logspage()" }, { @@ -4660,7 +4680,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_myfinancialpage", - "community": 11, + "community": 13, "norm_label": "myfinancialpage.tsx" }, { @@ -4670,7 +4690,7 @@ "source_location": "L8", "_origin": "ast", "id": "pages_myfinancialpage_monthlyentry", - "community": 11, + "community": 13, "norm_label": "monthlyentry" }, { @@ -4680,7 +4700,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_myfinancialpage_financialsummary", - "community": 11, + "community": 13, "norm_label": "financialsummary" }, { @@ -4690,7 +4710,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_myfinancialpage_kpicard", - "community": 11, + "community": 13, "norm_label": "kpicard()" }, { @@ -4700,7 +4720,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_myfinancialpage_myfinancialpage", - "community": 11, + "community": 13, "norm_label": "myfinancialpage()" }, { @@ -4890,7 +4910,7 @@ "source_location": "L1432", "_origin": "ast", "id": "pages_mypatientspage_sessionrow", - "community": 21, + "community": 13, "norm_label": "sessionrow()" }, { @@ -5030,7 +5050,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_newsessionpage", - "community": 265, + "community": 33, "norm_label": "newsessionpage.tsx" }, { @@ -5040,7 +5060,7 @@ "source_location": "L15", "_origin": "ast", "id": "pages_newsessionpage_schema", - "community": 265, + "community": 33, "norm_label": "schema" }, { @@ -5050,7 +5070,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_newsessionpage_formdata", - "community": 265, + "community": 33, "norm_label": "formdata" }, { @@ -5060,7 +5080,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_newsessionpage_contract", - "community": 265, + "community": 33, "norm_label": "contract" }, { @@ -5070,7 +5090,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_newsessionpage_coveragerow", - "community": 265, + "community": 33, "norm_label": "coveragerow" }, { @@ -5080,7 +5100,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_newsessionpage_payment_labels", - "community": 265, + "community": 33, "norm_label": "payment_labels" }, { @@ -5090,7 +5110,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_newsessionpage_rule", - "community": 265, + "community": 33, "norm_label": "rule" }, { @@ -5100,7 +5120,7 @@ "source_location": "L38", "_origin": "ast", "id": "pages_newsessionpage_patientshareof", - "community": 265, + "community": 33, "norm_label": "patientshareof()" }, { @@ -5110,7 +5130,7 @@ "source_location": "L56", "_origin": "ast", "id": "pages_newsessionpage_sectiontitle", - "community": 265, + "community": 33, "norm_label": "sectiontitle" }, { @@ -5120,7 +5140,7 @@ "source_location": "L57", "_origin": "ast", "id": "pages_newsessionpage_fieldlabel", - "community": 265, + "community": 33, "norm_label": "fieldlabel" }, { @@ -5130,7 +5150,7 @@ "source_location": "L59", "_origin": "ast", "id": "pages_newsessionpage_newsessionpage", - "community": 265, + "community": 33, "norm_label": "newsessionpage()" }, { @@ -5140,7 +5160,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_paymentdetailpage", - "community": 3, + "community": 13, "norm_label": "paymentdetailpage.tsx" }, { @@ -5150,7 +5170,7 @@ "source_location": "L12", "_origin": "ast", "id": "pages_paymentdetailpage_inforow", - "community": 3, + "community": 13, "norm_label": "inforow()" }, { @@ -5160,7 +5180,7 @@ "source_location": "L21", "_origin": "ast", "id": "pages_paymentdetailpage_paymentdetailpage", - "community": 3, + "community": 13, "norm_label": "paymentdetailpage()" }, { @@ -5450,7 +5470,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_representationsettlementpage", - "community": 2, + "community": 13, "norm_label": "representationsettlementpage.tsx" }, { @@ -5460,7 +5480,7 @@ "source_location": "L9", "_origin": "ast", "id": "pages_representationsettlementpage_walletbalance", - "community": 2, + "community": 13, "norm_label": "walletbalance" }, { @@ -5470,7 +5490,7 @@ "source_location": "L10", "_origin": "ast", "id": "pages_representationsettlementpage_repsummary", - "community": 2, + "community": 13, "norm_label": "repsummary" }, { @@ -5480,7 +5500,7 @@ "source_location": "L11", "_origin": "ast", "id": "pages_representationsettlementpage_settlementrow", - "community": 2, + "community": 13, "norm_label": "settlementrow" }, { @@ -5490,7 +5510,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_representationsettlementpage_status_label", - "community": 2, + "community": 13, "norm_label": "status_label" }, { @@ -5500,7 +5520,7 @@ "source_location": "L22", "_origin": "ast", "id": "pages_representationsettlementpage_status_class", - "community": 2, + "community": 13, "norm_label": "status_class" }, { @@ -5510,7 +5530,7 @@ "source_location": "L26", "_origin": "ast", "id": "pages_representationsettlementpage_ibanitem", - "community": 2, + "community": 13, "norm_label": "ibanitem" }, { @@ -5520,7 +5540,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_representationsettlementpage_repme", - "community": 2, + "community": 13, "norm_label": "repme" }, { @@ -5530,7 +5550,7 @@ "source_location": "L29", "_origin": "ast", "id": "pages_representationsettlementpage_representationsettlementpage", - "community": 2, + "community": 13, "norm_label": "representationsettlementpage()" }, { @@ -5680,7 +5700,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_settingspage", - "community": 13, + "community": 2, "norm_label": "settingspage.tsx" }, { @@ -5690,7 +5710,7 @@ "source_location": "L11", "_origin": "ast", "id": "pages_settingspage_taxhistoryrow", - "community": 13, + "community": 2, "norm_label": "taxhistoryrow" }, { @@ -5700,37 +5720,37 @@ "source_location": "L20", "_origin": "ast", "id": "pages_settingspage_schema", - "community": 13, + "community": 2, "norm_label": "schema" }, { "label": "FormValues", "file_type": "code", "source_file": "assets/admin/pages/SettingsPage.tsx", - "source_location": "L46", + "source_location": "L41", "_origin": "ast", "id": "pages_settingspage_formvalues", - "community": 13, + "community": 2, "norm_label": "formvalues" }, { "label": "Settings", "file_type": "code", "source_file": "assets/admin/pages/SettingsPage.tsx", - "source_location": "L48", + "source_location": "L43", "_origin": "ast", "id": "pages_settingspage_settings", - "community": 13, + "community": 2, "norm_label": "settings" }, { "label": "SettingsPage()", "file_type": "code", "source_file": "assets/admin/pages/SettingsPage.tsx", - "source_location": "L73", + "source_location": "L65", "_origin": "ast", "id": "pages_settingspage_settingspage", - "community": 13, + "community": 2, "norm_label": "settingspage()" }, { @@ -5740,7 +5760,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_settlementdetailpage", - "community": 0, + "community": 13, "norm_label": "settlementdetailpage.tsx" }, { @@ -5750,7 +5770,7 @@ "source_location": "L14", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetail", - "community": 0, + "community": 13, "norm_label": "settlementdetail" }, { @@ -5760,7 +5780,7 @@ "source_location": "L30", "_origin": "ast", "id": "pages_settlementdetailpage_row", - "community": 0, + "community": 13, "norm_label": "row()" }, { @@ -5770,7 +5790,7 @@ "source_location": "L39", "_origin": "ast", "id": "pages_settlementdetailpage_settlementdetailpage", - "community": 0, + "community": 13, "norm_label": "settlementdetailpage()" }, { @@ -5800,7 +5820,7 @@ "source_location": "L24", "_origin": "ast", "id": "pages_settlementspage_settlementspage", - "community": 21, + "community": 13, "norm_label": "settlementspage()" }, { @@ -5810,7 +5830,7 @@ "source_location": "L1", "_origin": "ast", "id": "pages_smspage", - "community": 3, + "community": 11, "norm_label": "smspage.tsx" }, { @@ -5820,7 +5840,7 @@ "source_location": "L19", "_origin": "ast", "id": "pages_smspage_templateschema", - "community": 3, + "community": 11, "norm_label": "templateschema" }, { @@ -5830,7 +5850,7 @@ "source_location": "L23", "_origin": "ast", "id": "pages_smspage_templateformdata", - "community": 3, + "community": 11, "norm_label": "templateformdata" }, { @@ -5840,7 +5860,7 @@ "source_location": "L25", "_origin": "ast", "id": "pages_smspage_tab", - "community": 3, + "community": 11, "norm_label": "tab" }, { @@ -5850,7 +5870,7 @@ "source_location": "L27", "_origin": "ast", "id": "pages_smspage_status_log_meta", - "community": 3, + "community": 11, "norm_label": "status_log_meta" }, { @@ -5860,7 +5880,7 @@ "source_location": "L33", "_origin": "ast", "id": "pages_smspage_tag_labels", - "community": 3, + "community": 11, "norm_label": "tag_labels" }, { @@ -5870,7 +5890,7 @@ "source_location": "L43", "_origin": "ast", "id": "pages_smspage_tag_filter_options", - "community": 3, + "community": 11, "norm_label": "tag_filter_options" }, { @@ -5880,7 +5900,7 @@ "source_location": "L48", "_origin": "ast", "id": "pages_smspage_smspage", - "community": 3, + "community": 11, "norm_label": "smspage()" }, { @@ -6053,21 +6073,11 @@ "community": 11, "norm_label": "plan_meta" }, - { - "label": "GATEWAY_LABELS", - "file_type": "code", - "source_file": "assets/admin/pages/SubscriptionPage.tsx", - "source_location": "L45", - "_origin": "ast", - "id": "pages_subscriptionpage_gateway_labels", - "community": 11, - "norm_label": "gateway_labels" - }, { "label": "SubscriptionPage()", "file_type": "code", "source_file": "assets/admin/pages/SubscriptionPage.tsx", - "source_location": "L49", + "source_location": "L47", "_origin": "ast", "id": "pages_subscriptionpage_subscriptionpage", "community": 11, @@ -6077,7 +6087,7 @@ "label": "PlanCard()", "file_type": "code", "source_file": "assets/admin/pages/SubscriptionPage.tsx", - "source_location": "L380", + "source_location": "L393", "_origin": "ast", "id": "pages_subscriptionpage_plancard", "community": 11, @@ -6600,7 +6610,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index", - "community": 3, + "community": 11, "norm_label": "index.ts" }, { @@ -6610,7 +6620,7 @@ "source_location": "L1", "_origin": "ast", "id": "types_index_user", - "community": 3, + "community": 11, "norm_label": "user" }, { @@ -6620,7 +6630,7 @@ "source_location": "L15", "_origin": "ast", "id": "types_index_userprofile", - "community": 3, + "community": 11, "norm_label": "userprofile" }, { @@ -6630,7 +6640,7 @@ "source_location": "L26", "_origin": "ast", "id": "types_index_doctor", - "community": 3, + "community": 11, "norm_label": "doctor" }, { @@ -6690,7 +6700,7 @@ "source_location": "L113", "_origin": "ast", "id": "types_index_paymentgateway", - "community": 3, + "community": 11, "norm_label": "paymentgateway" }, { @@ -6700,7 +6710,7 @@ "source_location": "L115", "_origin": "ast", "id": "types_index_payment", - "community": 3, + "community": 13, "norm_label": "payment" }, { @@ -6720,7 +6730,7 @@ "source_location": "L129", "_origin": "ast", "id": "types_index_settlement", - "community": 3, + "community": 11, "norm_label": "settlement" }, { @@ -6740,7 +6750,7 @@ "source_location": "L157", "_origin": "ast", "id": "types_index_comment", - "community": 3, + "community": 11, "norm_label": "comment" }, { @@ -6750,7 +6760,7 @@ "source_location": "L167", "_origin": "ast", "id": "types_index_rating", - "community": 3, + "community": 11, "norm_label": "rating" }, { @@ -6770,7 +6780,7 @@ "source_location": "L182", "_origin": "ast", "id": "types_index_smstemplate", - "community": 3, + "community": 11, "norm_label": "smstemplate" }, { @@ -6780,7 +6790,7 @@ "source_location": "L192", "_origin": "ast", "id": "types_index_smslog", - "community": 3, + "community": 11, "norm_label": "smslog" }, { @@ -6790,7 +6800,7 @@ "source_location": "L203", "_origin": "ast", "id": "types_index_applog", - "community": 13, + "community": 33, "norm_label": "applog" }, { @@ -6800,7 +6810,7 @@ "source_location": "L213", "_origin": "ast", "id": "types_index_smsmessagetext", - "community": 3, + "community": 11, "norm_label": "smsmessagetext" }, { @@ -6870,7 +6880,7 @@ "source_location": "L285", "_origin": "ast", "id": "types_index_blog", - "community": 19, + "community": 2, "norm_label": "blog" }, { @@ -6900,7 +6910,7 @@ "source_location": "L335", "_origin": "ast", "id": "types_index_specialty", - "community": 3, + "community": 11, "norm_label": "specialty" }, { @@ -6940,7 +6950,7 @@ "source_location": "L370", "_origin": "ast", "id": "types_index_mysubscriptiondata", - "community": 8, + "community": 11, "norm_label": "mysubscriptiondata" }, { @@ -6950,7 +6960,7 @@ "source_location": "L387", "_origin": "ast", "id": "types_index_mysubscription", - "community": 3, + "community": 11, "norm_label": "mysubscription" }, { @@ -6960,7 +6970,7 @@ "source_location": "L397", "_origin": "ast", "id": "types_index_servicesection", - "community": 265, + "community": 33, "norm_label": "servicesection" }, { @@ -7010,7 +7020,7 @@ "source_location": "L437", "_origin": "ast", "id": "types_index_patientprofile", - "community": 3, + "community": 11, "norm_label": "patientprofile" }, { @@ -7020,7 +7030,7 @@ "source_location": "L453", "_origin": "ast", "id": "types_index_patientrecord", - "community": 265, + "community": 33, "norm_label": "patientrecord" }, { @@ -7860,7 +7870,7 @@ "source_location": "L87", "_origin": "ast", "id": "composer_extra", - "community": 650, + "community": 163, "norm_label": "extra" }, { @@ -7870,7 +7880,7 @@ "source_location": "L88", "_origin": "ast", "id": "composer_extra_symfony", - "community": 650, + "community": 163, "norm_label": "symfony" }, { @@ -7880,7 +7890,7 @@ "source_location": "L89", "_origin": "ast", "id": "composer_symfony_allow_contrib", - "community": 650, + "community": 163, "norm_label": "allow-contrib" }, { @@ -7890,7 +7900,7 @@ "source_location": "L90", "_origin": "ast", "id": "composer_symfony_require", - "community": 650, + "community": 163, "norm_label": "require" }, { @@ -8202,7 +8212,7 @@ "source_location": "", "_origin": "ast", "id": "abstractmigration", - "community": 400, + "community": 399, "norm_label": "abstractmigration" }, { @@ -8742,7 +8752,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260609134741", - "community": 400, + "community": 640, "norm_label": "version20260609134741.php" }, { @@ -8752,7 +8762,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260609134741_version20260609134741", - "community": 400, + "community": 640, "norm_label": "version20260609134741" }, { @@ -8762,7 +8772,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260609134741_version20260609134741_getdescription", - "community": 400, + "community": 640, "norm_label": ".getdescription()" }, { @@ -8772,7 +8782,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260609134741_version20260609134741_up", - "community": 400, + "community": 640, "norm_label": ".up()" }, { @@ -8782,7 +8792,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260609134741_php_schema", - "community": 400, + "community": 640, "norm_label": "schema" }, { @@ -8792,7 +8802,7 @@ "source_location": "L28", "_origin": "ast", "id": "migrations_version20260609134741_version20260609134741_down", - "community": 400, + "community": 640, "norm_label": ".down()" }, { @@ -10782,7 +10792,7 @@ "source_location": "L1", "_origin": "ast", "id": "migrations_version20260619121047", - "community": 491, + "community": 399, "norm_label": "version20260619121047.php" }, { @@ -10792,7 +10802,7 @@ "source_location": "L13", "_origin": "ast", "id": "migrations_version20260619121047_version20260619121047", - "community": 491, + "community": 399, "norm_label": "version20260619121047" }, { @@ -10802,7 +10812,7 @@ "source_location": "L15", "_origin": "ast", "id": "migrations_version20260619121047_version20260619121047_getdescription", - "community": 491, + "community": 399, "norm_label": ".getdescription()" }, { @@ -10812,7 +10822,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260619121047_version20260619121047_up", - "community": 491, + "community": 399, "norm_label": ".up()" }, { @@ -10822,7 +10832,7 @@ "source_location": "L20", "_origin": "ast", "id": "migrations_version20260619121047_php_schema", - "community": 491, + "community": 399, "norm_label": "schema" }, { @@ -10832,7 +10842,7 @@ "source_location": "L26", "_origin": "ast", "id": "migrations_version20260619121047_version20260619121047_down", - "community": 491, + "community": 399, "norm_label": ".down()" }, { @@ -15692,7 +15702,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_appointmentexpiryservice", - "community": 401, + "community": 16, "norm_label": "appointmentexpiryservice.php" }, { @@ -15702,7 +15712,7 @@ "source_location": "L10", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice", - "community": 401, + "community": 16, "norm_label": "appointmentexpiryservice" }, { @@ -15712,7 +15722,7 @@ "source_location": "L12", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_construct", - "community": 401, + "community": 16, "norm_label": ".__construct()" }, { @@ -15722,7 +15732,7 @@ "source_location": "L23", "_origin": "ast", "id": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale", - "community": 401, + "community": 16, "norm_label": ".expirestale()" }, { @@ -22829,7 +22839,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L47", + "source_location": "L40", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_construct", "community": 301, @@ -22839,7 +22849,7 @@ "label": ".get()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L53", + "source_location": "L46", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_get", "community": 301, @@ -22849,7 +22859,7 @@ "label": "JsonResponse", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L53", + "source_location": "L46", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_jsonresponse", "community": 301, @@ -22859,7 +22869,7 @@ "label": ".patch()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L59", + "source_location": "L55", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_patch", "community": 301, @@ -22869,7 +22879,7 @@ "label": "Request", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L59", + "source_location": "L55", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_request", "community": 301, @@ -22879,7 +22889,7 @@ "label": "User", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L59", + "source_location": "L55", "_origin": "ast", "id": "src_config_controller_siteconfigcontroller_php_user", "community": 301, @@ -22889,7 +22899,7 @@ "label": ".taxHistory()", "file_type": "code", "source_file": "src/Config/Controller/SiteConfigController.php", - "source_location": "L91", + "source_location": "L87", "_origin": "ast", "id": "controller_siteconfigcontroller_siteconfigcontroller_taxhistory", "community": 301, @@ -23089,7 +23099,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", - "source_location": "L40", + "source_location": "L33", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_construct", "community": 53, @@ -23099,7 +23109,7 @@ "label": "ManagerRegistry", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", - "source_location": "L40", + "source_location": "L33", "_origin": "ast", "id": "src_config_repository_siteconfigrepository_php_managerregistry", "community": 53, @@ -23109,7 +23119,7 @@ "label": ".get()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", - "source_location": "L45", + "source_location": "L38", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_get", "community": 53, @@ -23119,7 +23129,7 @@ "label": ".getAll()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", - "source_location": "L54", + "source_location": "L47", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_getall", "community": 53, @@ -23129,7 +23139,7 @@ "label": ".set()", "file_type": "code", "source_file": "src/Config/Repository/SiteConfigRepository.php", - "source_location": "L70", + "source_location": "L63", "_origin": "ast", "id": "repository_siteconfigrepository_siteconfigrepository_set", "community": 53, @@ -23279,7 +23289,7 @@ "label": ".secretary()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", - "source_location": "L254", + "source_location": "L255", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretary", "community": 206, @@ -23289,7 +23299,7 @@ "label": ".secretaryDoctorDashboard()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", - "source_location": "L283", + "source_location": "L284", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretarydoctordashboard", "community": 206, @@ -23299,7 +23309,7 @@ "label": "DoctorSecretary", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", - "source_location": "L283", + "source_location": "L284", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_doctorsecretary", "community": 206, @@ -23309,7 +23319,7 @@ "label": ".secretaryClinicDashboard()", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", - "source_location": "L338", + "source_location": "L339", "_origin": "ast", "id": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard", "community": 206, @@ -23319,7 +23329,7 @@ "label": "Clinic", "file_type": "code", "source_file": "src/Dashboard/Controller/DashboardController.php", - "source_location": "L338", + "source_location": "L339", "_origin": "ast", "id": "src_dashboard_controller_dashboardcontroller_php_clinic", "community": 206, @@ -24622,7 +24632,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_doctorservicecontroller", - "community": 347, + "community": 4, "norm_label": "doctorservicecontroller.php" }, { @@ -24632,7 +24642,7 @@ "source_location": "L16", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller", - "community": 347, + "community": 4, "norm_label": "doctorservicecontroller" }, { @@ -24642,7 +24652,7 @@ "source_location": "L19", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_construct", - "community": 347, + "community": 4, "norm_label": ".__construct()" }, { @@ -24652,7 +24662,7 @@ "source_location": "L24", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_list", - "community": 347, + "community": 4, "norm_label": ".list()" }, { @@ -24662,7 +24672,7 @@ "source_location": "L24", "_origin": "ast", "id": "src_doctorservice_controller_doctorservicecontroller_php_request", - "community": 347, + "community": 4, "norm_label": "request" }, { @@ -24672,7 +24682,7 @@ "source_location": "L24", "_origin": "ast", "id": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse", - "community": 347, + "community": 4, "norm_label": "jsonresponse" }, { @@ -24682,7 +24692,7 @@ "source_location": "L37", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_create", - "community": 347, + "community": 4, "norm_label": ".create()" }, { @@ -24692,7 +24702,7 @@ "source_location": "L62", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_update", - "community": 347, + "community": 4, "norm_label": ".update()" }, { @@ -24702,7 +24712,7 @@ "source_location": "L85", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_delete", - "community": 347, + "community": 4, "norm_label": ".delete()" }, { @@ -24712,17 +24722,17 @@ "source_location": "L98", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_adminlist", - "community": 347, + "community": 4, "norm_label": ".adminlist()" }, { "label": ".slugify()", "file_type": "code", "source_file": "src/DoctorService/Controller/DoctorServiceController.php", - "source_location": "L127", + "source_location": "L130", "_origin": "ast", "id": "controller_doctorservicecontroller_doctorservicecontroller_slugify", - "community": 347, + "community": 4, "norm_label": ".slugify()" }, { @@ -25109,7 +25119,7 @@ "label": ".uploadLogo()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L167", + "source_location": "L172", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_uploadlogo", "community": 26, @@ -25119,7 +25129,7 @@ "label": ".getInsurancePricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L215", + "source_location": "L220", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_getinsurancepricing", "community": 26, @@ -25129,7 +25139,7 @@ "label": ".saveInsurancePricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L253", + "source_location": "L258", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_saveinsurancepricing", "community": 26, @@ -25139,7 +25149,7 @@ "label": ".upsertPricing()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L288", + "source_location": "L293", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_upsertpricing", "community": 26, @@ -25149,7 +25159,7 @@ "label": ".listTenantInsurances()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L301", + "source_location": "L306", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_listtenantinsurances", "community": 26, @@ -25159,7 +25169,7 @@ "label": ".activateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L327", + "source_location": "L332", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_activatetenantinsurance", "community": 26, @@ -25169,7 +25179,7 @@ "label": ".updateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L355", + "source_location": "L360", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_updatetenantinsurance", "community": 26, @@ -25179,7 +25189,7 @@ "label": ".deactivateTenantInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L381", + "source_location": "L386", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_deactivatetenantinsurance", "community": 26, @@ -25189,7 +25199,7 @@ "label": ".listServiceCoverage()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L396", + "source_location": "L401", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_listservicecoverage", "community": 26, @@ -25199,7 +25209,7 @@ "label": ".setServiceCoverage()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L427", + "source_location": "L432", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_setservicecoverage", "community": 26, @@ -25209,7 +25219,7 @@ "label": ".addDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L468", + "source_location": "L473", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_adddoctorinsurance", "community": 26, @@ -25219,7 +25229,7 @@ "label": ".showDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L508", + "source_location": "L513", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_showdoctorinsurance", "community": 26, @@ -25229,7 +25239,7 @@ "label": ".updateDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L524", + "source_location": "L529", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_updatedoctorinsurance", "community": 26, @@ -25239,7 +25249,7 @@ "label": ".deleteDoctorInsurance()", "file_type": "code", "source_file": "src/Insurance/Controller/InsuranceController.php", - "source_location": "L546", + "source_location": "L551", "_origin": "ast", "id": "controller_insurancecontroller_insurancecontroller_deletedoctorinsurance", "community": 26, @@ -26132,7 +26142,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_entityinsurancepricingrepository", - "community": 26, + "community": 491, "norm_label": "entityinsurancepricingrepository.php" }, { @@ -26142,7 +26152,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository", - "community": 26, + "community": 491, "norm_label": "entityinsurancepricingrepository" }, { @@ -26152,7 +26162,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_construct", - "community": 26, + "community": 491, "norm_label": ".__construct()" }, { @@ -26162,7 +26172,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_insurance_repository_entityinsurancepricingrepository_php_managerregistry", - "community": 26, + "community": 491, "norm_label": "managerregistry" }, { @@ -26172,7 +26182,7 @@ "source_location": "L17", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findbyentity", - "community": 26, + "community": 491, "norm_label": ".findbyentity()" }, { @@ -26182,7 +26192,7 @@ "source_location": "L22", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_findoneforinsurance", - "community": 26, + "community": 491, "norm_label": ".findoneforinsurance()" }, { @@ -26192,7 +26202,7 @@ "source_location": "L22", "_origin": "ast", "id": "entityinsurancepricing", - "community": 26, + "community": 491, "norm_label": "entityinsurancepricing" }, { @@ -26202,7 +26212,7 @@ "source_location": "L31", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_save", - "community": 26, + "community": 491, "norm_label": ".save()" }, { @@ -26212,7 +26222,7 @@ "source_location": "L39", "_origin": "ast", "id": "repository_entityinsurancepricingrepository_entityinsurancepricingrepository_remove", - "community": 26, + "community": 491, "norm_label": ".remove()" }, { @@ -26502,7 +26512,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_tenantinsurancecleanupservice", - "community": 618, + "community": 491, "norm_label": "tenantinsurancecleanupservice.php" }, { @@ -26512,7 +26522,7 @@ "source_location": "L17", "_origin": "ast", "id": "service_tenantinsurancecleanupservice_tenantinsurancecleanupservice", - "community": 618, + "community": 491, "norm_label": "tenantinsurancecleanupservice" }, { @@ -26522,7 +26532,7 @@ "source_location": "L19", "_origin": "ast", "id": "service_tenantinsurancecleanupservice_tenantinsurancecleanupservice_construct", - "community": 618, + "community": 491, "norm_label": ".__construct()" }, { @@ -26532,7 +26542,7 @@ "source_location": "L21", "_origin": "ast", "id": "service_tenantinsurancecleanupservice_tenantinsurancecleanupservice_purgeforentity", - "community": 618, + "community": 491, "norm_label": ".purgeforentity()" }, { @@ -26919,7 +26929,7 @@ "label": ".adminCities()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", - "source_location": "L180", + "source_location": "L185", "_origin": "ast", "id": "controller_locationcontroller_locationcontroller_admincities", "community": 121, @@ -26929,7 +26939,7 @@ "label": ".applyCityData()", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", - "source_location": "L212", + "source_location": "L220", "_origin": "ast", "id": "controller_locationcontroller_locationcontroller_applycitydata", "community": 121, @@ -26939,7 +26949,7 @@ "label": "City", "file_type": "code", "source_file": "src/Location/Controller/LocationController.php", - "source_location": "L212", + "source_location": "L220", "_origin": "ast", "id": "src_location_controller_locationcontroller_php_city", "community": 121, @@ -28965,11 +28975,21 @@ "community": 15, "norm_label": ".config()" }, + { + "label": ".activeGateways()", + "file_type": "code", + "source_file": "src/Payment/Controller/PaymentController.php", + "source_location": "L561", + "_origin": "ast", + "id": "controller_paymentcontroller_paymentcontroller_activegateways", + "community": 15, + "norm_label": ".activegateways()" + }, { "label": ".myPayments()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L554", + "source_location": "L578", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_mypayments", "community": 15, @@ -28979,7 +28999,7 @@ "label": ".getStatus()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L571", + "source_location": "L595", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_getstatus", "community": 15, @@ -28989,7 +29009,7 @@ "label": ".resolveGateway()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L589", + "source_location": "L613", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_resolvegateway", "community": 15, @@ -28999,7 +29019,7 @@ "label": "PaymentGatewayInterface", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L589", + "source_location": "L613", "_origin": "ast", "id": "src_payment_controller_paymentcontroller_php_paymentgatewayinterface", "community": 15, @@ -29009,7 +29029,7 @@ "label": ".allowedHosts()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L603", + "source_location": "L627", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_allowedhosts", "community": 15, @@ -29019,7 +29039,7 @@ "label": ".isAllowedFrontend()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L610", + "source_location": "L634", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_isallowedfrontend", "community": 15, @@ -29029,7 +29049,7 @@ "label": ".isAllowedCallbackIp()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L620", + "source_location": "L644", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_isallowedcallbackip", "community": 15, @@ -29039,7 +29059,7 @@ "label": ".handleSmsWalletCharge()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L641", + "source_location": "L665", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_handlesmswalletcharge", "community": 15, @@ -29049,7 +29069,7 @@ "label": "Payment", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L641", + "source_location": "L665", "_origin": "ast", "id": "src_payment_controller_paymentcontroller_php_payment", "community": 15, @@ -29059,7 +29079,7 @@ "label": ".handleAppointmentConfirmation()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L655", + "source_location": "L679", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_handleappointmentconfirmation", "community": 15, @@ -29069,7 +29089,7 @@ "label": ".handleSubscriptionActivation()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L688", + "source_location": "L712", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_handlesubscriptionactivation", "community": 15, @@ -29079,7 +29099,7 @@ "label": ".redirectToFrontend()", "file_type": "code", "source_file": "src/Payment/Controller/PaymentController.php", - "source_location": "L711", + "source_location": "L735", "_origin": "ast", "id": "controller_paymentcontroller_paymentcontroller_redirecttofrontend", "community": 15, @@ -29382,7 +29402,7 @@ "source_location": "L9", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway", - "community": 213, + "community": 15, "norm_label": "mellatgateway" }, { @@ -29392,7 +29412,7 @@ "source_location": "L13", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_construct", - "community": 213, + "community": 15, "norm_label": ".__construct()" }, { @@ -29402,104 +29422,114 @@ "source_location": "L22", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_getname", - "community": 213, + "community": 15, "norm_label": ".getname()" }, + { + "label": ".isConfigured()", + "file_type": "code", + "source_file": "src/Payment/Gateway/MellatGateway.php", + "source_location": "L24", + "_origin": "ast", + "id": "gateway_mellatgateway_mellatgateway_isconfigured", + "community": 15, + "norm_label": ".isconfigured()" + }, { "label": ".cfg()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L24", + "source_location": "L31", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_cfg", - "community": 213, + "community": 15, "norm_label": ".cfg()" }, { "label": ".initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L29", + "source_location": "L36", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_initiate", - "community": 213, + "community": 15, "norm_label": ".initiate()" }, { "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L29", + "source_location": "L36", "_origin": "ast", "id": "src_payment_gateway_mellatgateway_php_paymentinitresult", - "community": 213, + "community": 15, "norm_label": "paymentinitresult" }, { "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L56", + "source_location": "L63", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_verify", - "community": 213, + "community": 15, "norm_label": ".verify()" }, { "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L56", + "source_location": "L63", "_origin": "ast", "id": "src_payment_gateway_mellatgateway_php_paymentverifyresult", - "community": 213, + "community": 15, "norm_label": "paymentverifyresult" }, { "label": ".buildRequestPayload()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L90", + "source_location": "L97", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_buildrequestpayload", - "community": 213, + "community": 15, "norm_label": ".buildrequestpayload()" }, { "label": ".buildVerifyPayload()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L116", + "source_location": "L123", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_buildverifypayload", - "community": 213, + "community": 15, "norm_label": ".buildverifypayload()" }, { "label": ".parseResCode()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L138", + "source_location": "L145", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_parserescode", - "community": 213, + "community": 15, "norm_label": ".parserescode()" }, { "label": ".parseRefId()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L145", + "source_location": "L152", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_parserefid", - "community": 213, + "community": 15, "norm_label": ".parserefid()" }, { "label": ".date()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L152", + "source_location": "L159", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_date", "community": 20, @@ -29509,7 +29539,7 @@ "label": ".time()", "file_type": "code", "source_file": "src/Payment/Gateway/MellatGateway.php", - "source_location": "L153", + "source_location": "L160", "_origin": "ast", "id": "gateway_mellatgateway_mellatgateway_time", "community": 16, @@ -29546,11 +29576,21 @@ "norm_label": ".getname()" }, { - "label": ".initiate()", + "label": ".isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", "source_location": "L9", "_origin": "ast", + "id": "gateway_mockgateway_mockgateway_isconfigured", + "community": 15, + "norm_label": ".isconfigured()" + }, + { + "label": ".initiate()", + "file_type": "code", + "source_file": "src/Payment/Gateway/MockGateway.php", + "source_location": "L11", + "_origin": "ast", "id": "gateway_mockgateway_mockgateway_initiate", "community": 15, "norm_label": ".initiate()" @@ -29559,7 +29599,7 @@ "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", - "source_location": "L9", + "source_location": "L11", "_origin": "ast", "id": "src_payment_gateway_mockgateway_php_paymentinitresult", "community": 15, @@ -29569,7 +29609,7 @@ "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", - "source_location": "L15", + "source_location": "L17", "_origin": "ast", "id": "gateway_mockgateway_mockgateway_verify", "community": 15, @@ -29579,7 +29619,7 @@ "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/MockGateway.php", - "source_location": "L15", + "source_location": "L17", "_origin": "ast", "id": "src_payment_gateway_mockgateway_php_paymentverifyresult", "community": 15, @@ -29606,11 +29646,21 @@ "norm_label": "getname()" }, { - "label": "initiate()", + "label": "isConfigured()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", "source_location": "L12", "_origin": "ast", + "id": "gateway_paymentgatewayinterface_isconfigured", + "community": 398, + "norm_label": "isconfigured()" + }, + { + "label": "initiate()", + "file_type": "code", + "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", + "source_location": "L17", + "_origin": "ast", "id": "gateway_paymentgatewayinterface_initiate", "community": 398, "norm_label": "initiate()" @@ -29619,7 +29669,7 @@ "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", - "source_location": "L12", + "source_location": "L17", "_origin": "ast", "id": "src_payment_gateway_paymentgatewayinterface_php_paymentinitresult", "community": 398, @@ -29629,7 +29679,7 @@ "label": "verify()", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", - "source_location": "L17", + "source_location": "L22", "_origin": "ast", "id": "gateway_paymentgatewayinterface_verify", "community": 398, @@ -29639,7 +29689,7 @@ "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", - "source_location": "L17", + "source_location": "L22", "_origin": "ast", "id": "src_payment_gateway_paymentgatewayinterface_php_paymentverifyresult", "community": 398, @@ -29712,7 +29762,7 @@ "source_location": "L1", "_origin": "ast", "id": "gateway_sepgateway", - "community": 15, + "community": 372, "norm_label": "sepgateway.php" }, { @@ -29722,7 +29772,7 @@ "source_location": "L9", "_origin": "ast", "id": "gateway_sepgateway_sepgateway", - "community": 15, + "community": 598, "norm_label": "sepgateway" }, { @@ -29732,7 +29782,7 @@ "source_location": "L14", "_origin": "ast", "id": "gateway_sepgateway_sepgateway_construct", - "community": 15, + "community": 598, "norm_label": ".__construct()" }, { @@ -29742,57 +29792,67 @@ "source_location": "L21", "_origin": "ast", "id": "gateway_sepgateway_sepgateway_getname", - "community": 15, + "community": 598, "norm_label": ".getname()" }, + { + "label": ".isConfigured()", + "file_type": "code", + "source_file": "src/Payment/Gateway/SepGateway.php", + "source_location": "L23", + "_origin": "ast", + "id": "gateway_sepgateway_sepgateway_isconfigured", + "community": 598, + "norm_label": ".isconfigured()" + }, { "label": ".cfg()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", - "source_location": "L23", + "source_location": "L28", "_origin": "ast", "id": "gateway_sepgateway_sepgateway_cfg", - "community": 15, + "community": 598, "norm_label": ".cfg()" }, { "label": ".initiate()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", - "source_location": "L28", + "source_location": "L33", "_origin": "ast", "id": "gateway_sepgateway_sepgateway_initiate", - "community": 15, + "community": 598, "norm_label": ".initiate()" }, { "label": "PaymentInitResult", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", - "source_location": "L28", + "source_location": "L33", "_origin": "ast", "id": "src_payment_gateway_sepgateway_php_paymentinitresult", - "community": 15, + "community": 598, "norm_label": "paymentinitresult" }, { "label": ".verify()", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", - "source_location": "L57", + "source_location": "L62", "_origin": "ast", "id": "gateway_sepgateway_sepgateway_verify", - "community": 15, + "community": 598, "norm_label": ".verify()" }, { "label": "PaymentVerifyResult", "file_type": "code", "source_file": "src/Payment/Gateway/SepGateway.php", - "source_location": "L57", + "source_location": "L62", "_origin": "ast", "id": "src_payment_gateway_sepgateway_php_paymentverifyresult", - "community": 15, + "community": 598, "norm_label": "paymentverifyresult" }, { @@ -31949,7 +32009,7 @@ "label": "SecretaryController", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L22", + "source_location": "L25", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller", "community": 176, @@ -31959,7 +32019,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L26", + "source_location": "L29", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_construct", "community": 176, @@ -31969,7 +32029,7 @@ "label": ".create()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L35", + "source_location": "L41", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_create", "community": 176, @@ -31979,7 +32039,7 @@ "label": "Request", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L35", + "source_location": "L41", "_origin": "ast", "id": "src_secretary_controller_secretarycontroller_php_request", "community": 176, @@ -31989,7 +32049,7 @@ "label": "User", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L35", + "source_location": "L41", "_origin": "ast", "id": "src_secretary_controller_secretarycontroller_php_user", "community": 176, @@ -31999,17 +32059,27 @@ "label": "JsonResponse", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L35", + "source_location": "L41", "_origin": "ast", "id": "src_secretary_controller_secretarycontroller_php_jsonresponse", "community": 176, "norm_label": "jsonresponse" }, + { + "label": ".sendWelcomeSms()", + "file_type": "code", + "source_file": "src/Secretary/Controller/SecretaryController.php", + "source_location": "L125", + "_origin": "ast", + "id": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", + "community": 176, + "norm_label": ".sendwelcomesms()" + }, { "label": ".show()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L116", + "source_location": "L142", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_show", "community": 176, @@ -32019,7 +32089,7 @@ "label": ".update()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L131", + "source_location": "L157", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_update", "community": 176, @@ -32029,7 +32099,7 @@ "label": ".deactivate()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L158", + "source_location": "L184", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_deactivate", "community": 176, @@ -32039,7 +32109,7 @@ "label": ".list()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L177", + "source_location": "L203", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_list", "community": 176, @@ -32049,7 +32119,7 @@ "label": ".listByClinic()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L199", + "source_location": "L225", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_listbyclinic", "community": 176, @@ -32059,7 +32129,7 @@ "label": ".canManage()", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L220", + "source_location": "L246", "_origin": "ast", "id": "controller_secretarycontroller_secretarycontroller_canmanage", "community": 176, @@ -32069,7 +32139,7 @@ "label": "DoctorSecretary", "file_type": "code", "source_file": "src/Secretary/Controller/SecretaryController.php", - "source_location": "L220", + "source_location": "L246", "_origin": "ast", "id": "src_secretary_controller_secretarycontroller_php_doctorsecretary", "community": 176, @@ -34532,7 +34602,7 @@ "source_location": "L1", "_origin": "ast", "id": "service_inputvalidator", - "community": 20, + "community": 641, "norm_label": "inputvalidator.php" }, { @@ -34542,7 +34612,7 @@ "source_location": "L9", "_origin": "ast", "id": "service_inputvalidator_inputvalidator", - "community": 20, + "community": 641, "norm_label": "inputvalidator" }, { @@ -34552,7 +34622,7 @@ "source_location": "L11", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_isvalidiranmobile", - "community": 20, + "community": 641, "norm_label": ".isvalidiranmobile()" }, { @@ -34562,7 +34632,7 @@ "source_location": "L17", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_isvalidirannationalcode", - "community": 20, + "community": 641, "norm_label": ".isvalidirannationalcode()" }, { @@ -34572,7 +34642,7 @@ "source_location": "L27", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_maskmobile", - "community": 20, + "community": 641, "norm_label": ".maskmobile()" }, { @@ -34582,7 +34652,7 @@ "source_location": "L37", "_origin": "ast", "id": "service_inputvalidator_inputvalidator_toenglishdigits", - "community": 20, + "community": 641, "norm_label": ".toenglishdigits()" }, { @@ -34802,7 +34872,7 @@ "source_location": "L1", "_origin": "ast", "id": "controller_smsmessagecontroller", - "community": 440, + "community": 108, "norm_label": "smsmessagecontroller.php" }, { @@ -34812,7 +34882,7 @@ "source_location": "L18", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller", - "community": 440, + "community": 108, "norm_label": "smsmessagecontroller" }, { @@ -34822,7 +34892,7 @@ "source_location": "L22", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_construct", - "community": 440, + "community": 108, "norm_label": ".__construct()" }, { @@ -34832,7 +34902,7 @@ "source_location": "L26", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_list", - "community": 440, + "community": 108, "norm_label": ".list()" }, { @@ -34842,7 +34912,7 @@ "source_location": "L26", "_origin": "ast", "id": "src_sms_controller_smsmessagecontroller_php_jsonresponse", - "community": 440, + "community": 108, "norm_label": "jsonresponse" }, { @@ -34852,7 +34922,7 @@ "source_location": "L55", "_origin": "ast", "id": "controller_smsmessagecontroller_smsmessagecontroller_update", - "community": 440, + "community": 108, "norm_label": ".update()" }, { @@ -34862,7 +34932,7 @@ "source_location": "L55", "_origin": "ast", "id": "src_sms_controller_smsmessagecontroller_php_request", - "community": 440, + "community": 108, "norm_label": "request" }, { @@ -34889,7 +34959,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L32", + "source_location": "L34", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_construct", "community": 64, @@ -34899,7 +34969,7 @@ "label": ".balance()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L47", + "source_location": "L49", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_balance", "community": 64, @@ -34909,7 +34979,7 @@ "label": "User", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L47", + "source_location": "L49", "_origin": "ast", "id": "src_sms_controller_smswalletcontroller_php_user", "community": 64, @@ -34919,7 +34989,7 @@ "label": "JsonResponse", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L47", + "source_location": "L49", "_origin": "ast", "id": "src_sms_controller_smswalletcontroller_php_jsonresponse", "community": 64, @@ -34929,7 +34999,7 @@ "label": ".charge()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L66", + "source_location": "L68", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_charge", "community": 64, @@ -34939,7 +35009,7 @@ "label": "Request", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L66", + "source_location": "L68", "_origin": "ast", "id": "src_sms_controller_smswalletcontroller_php_request", "community": 64, @@ -34949,7 +35019,7 @@ "label": ".logs()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L118", + "source_location": "L120", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_logs", "community": 64, @@ -34959,7 +35029,7 @@ "label": ".getSettings()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L141", + "source_location": "L143", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_getsettings", "community": 64, @@ -34969,7 +35039,7 @@ "label": ".updateSettings()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L165", + "source_location": "L167", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_updatesettings", "community": 64, @@ -34979,7 +35049,7 @@ "label": ".adminReviewList()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L195", + "source_location": "L197", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_adminreviewlist", "community": 64, @@ -34989,7 +35059,7 @@ "label": ".adminApprove()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L219", + "source_location": "L221", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_adminapprove", "community": 64, @@ -34999,7 +35069,7 @@ "label": ".adminReject()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L234", + "source_location": "L236", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_adminreject", "community": 64, @@ -35009,7 +35079,7 @@ "label": ".resolveEntityName()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L255", + "source_location": "L257", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_resolveentityname", "community": 64, @@ -35019,7 +35089,7 @@ "label": ".adminReport()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L266", + "source_location": "L268", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_adminreport", "community": 64, @@ -35029,7 +35099,7 @@ "label": ".resolveEntity()", "file_type": "code", "source_file": "src/Sms/Controller/SmsWalletController.php", - "source_location": "L288", + "source_location": "L290", "_origin": "ast", "id": "controller_smswalletcontroller_smswalletcontroller_resolveentity", "community": 64, @@ -35059,7 +35129,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L63", + "source_location": "L65", "_origin": "ast", "id": "entity_smslog_smslog_construct", "community": 339, @@ -35069,7 +35139,7 @@ "label": ".setTemplateUuid()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L74", + "source_location": "L76", "_origin": "ast", "id": "entity_smslog_smslog_settemplateuuid", "community": 339, @@ -35079,7 +35149,7 @@ "label": "self", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L74", + "source_location": "L76", "_origin": "ast", "id": "src_sms_entity_smslog_php_self", "community": 339, @@ -35089,7 +35159,7 @@ "label": ".getTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L75", + "source_location": "L77", "_origin": "ast", "id": "entity_smslog_smslog_gettag", "community": 339, @@ -35099,7 +35169,7 @@ "label": ".setTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L76", + "source_location": "L78", "_origin": "ast", "id": "entity_smslog_smslog_settag", "community": 339, @@ -35109,7 +35179,7 @@ "label": ".toArray()", "file_type": "code", "source_file": "src/Sms/Entity/SmsLog.php", - "source_location": "L78", + "source_location": "L80", "_origin": "ast", "id": "entity_smslog_smslog_toarray", "community": 339, @@ -35139,7 +35209,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L68", + "source_location": "L73", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_construct", "community": 210, @@ -35149,7 +35219,7 @@ "label": ".getId()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L77", + "source_location": "L82", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_getid", "community": 210, @@ -35159,7 +35229,7 @@ "label": ".getTag()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L78", + "source_location": "L83", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_gettag", "community": 210, @@ -35169,7 +35239,7 @@ "label": ".getTitle()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L79", + "source_location": "L84", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_gettitle", "community": 210, @@ -35179,7 +35249,7 @@ "label": ".getBody()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L80", + "source_location": "L85", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_getbody", "community": 210, @@ -35189,7 +35259,7 @@ "label": ".getVariables()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L81", + "source_location": "L86", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_getvariables", "community": 210, @@ -35199,7 +35269,7 @@ "label": ".getUpdatedAt()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L82", + "source_location": "L87", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_getupdatedat", "community": 210, @@ -35209,7 +35279,7 @@ "label": ".setTitle()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L84", + "source_location": "L89", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_settitle", "community": 210, @@ -35219,7 +35289,7 @@ "label": "self", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L84", + "source_location": "L89", "_origin": "ast", "id": "src_sms_entity_smsmessagetemplate_php_self", "community": 210, @@ -35229,7 +35299,7 @@ "label": ".setBody()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L85", + "source_location": "L90", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_setbody", "community": 210, @@ -35239,7 +35309,7 @@ "label": ".toArray()", "file_type": "code", "source_file": "src/Sms/Entity/SmsMessageTemplate.php", - "source_location": "L87", + "source_location": "L92", "_origin": "ast", "id": "entity_smsmessagetemplate_smsmessagetemplate_toarray", "community": 210, @@ -35942,14 +36012,14 @@ "source_location": "L1", "_origin": "ast", "id": "provider_kavehnegarprovider", - "community": 372, + "community": 492, "norm_label": "kavehnegarprovider.php" }, { "label": "KavehNegarProvider", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L9", + "source_location": "L8", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider", "community": 492, @@ -35959,7 +36029,7 @@ "label": ".__construct()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L13", + "source_location": "L12", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_construct", "community": 492, @@ -35969,7 +36039,7 @@ "label": ".key()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L23", + "source_location": "L20", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_key", "community": 492, @@ -35979,7 +36049,7 @@ "label": ".sender()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L24", + "source_location": "L21", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_sender", "community": 492, @@ -35989,7 +36059,7 @@ "label": ".getName()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L26", + "source_location": "L23", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_getname", "community": 492, @@ -35999,7 +36069,7 @@ "label": ".send()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L28", + "source_location": "L25", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_send", "community": 492, @@ -36009,7 +36079,7 @@ "label": ".sendTemplate()", "file_type": "code", "source_file": "src/Sms/Provider/KavehNegarProvider.php", - "source_location": "L49", + "source_location": "L46", "_origin": "ast", "id": "provider_kavehnegarprovider_kavehnegarprovider_sendtemplate", "community": 492, @@ -36252,7 +36322,7 @@ "source_location": "L1", "_origin": "ast", "id": "repository_smssettingsrepository", - "community": 64, + "community": 636, "norm_label": "smssettingsrepository.php" }, { @@ -36262,7 +36332,7 @@ "source_location": "L9", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository", - "community": 64, + "community": 636, "norm_label": "smssettingsrepository" }, { @@ -36272,7 +36342,7 @@ "source_location": "L11", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_construct", - "community": 64, + "community": 636, "norm_label": ".__construct()" }, { @@ -36282,7 +36352,7 @@ "source_location": "L11", "_origin": "ast", "id": "src_sms_repository_smssettingsrepository_php_managerregistry", - "community": 64, + "community": 636, "norm_label": "managerregistry" }, { @@ -36292,7 +36362,7 @@ "source_location": "L16", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_findbyentity", - "community": 64, + "community": 636, "norm_label": ".findbyentity()" }, { @@ -36302,7 +36372,7 @@ "source_location": "L16", "_origin": "ast", "id": "smssettings", - "community": 64, + "community": 636, "norm_label": "smssettings" }, { @@ -36312,7 +36382,7 @@ "source_location": "L21", "_origin": "ast", "id": "repository_smssettingsrepository_smssettingsrepository_save", - "community": 64, + "community": 636, "norm_label": ".save()" }, { @@ -36939,7 +37009,7 @@ "label": ".slugify()", "file_type": "code", "source_file": "src/Specialty/Controller/SpecialtyController.php", - "source_location": "L151", + "source_location": "L154", "_origin": "ast", "id": "controller_specialtycontroller_specialtycontroller_slugify", "community": 230, @@ -38979,7 +39049,7 @@ "label": ".slugify()", "file_type": "code", "source_file": "src/Tag/Controller/TagController.php", - "source_location": "L103", + "source_location": "L108", "_origin": "ast", "id": "controller_tagcontroller_tagcontroller_slugify", "community": 104, @@ -41062,7 +41132,7 @@ "source_location": "L1", "_origin": "ast", "id": "clinicservice_serviceitemdeletecleanuptest", - "community": 86, + "community": 618, "norm_label": "serviceitemdeletecleanuptest.php" }, { @@ -41072,7 +41142,7 @@ "source_location": "L17", "_origin": "ast", "id": "clinicservice_serviceitemdeletecleanuptest_serviceitemdeletecleanuptest", - "community": 86, + "community": 618, "norm_label": "serviceitemdeletecleanuptest" }, { @@ -41082,7 +41152,7 @@ "source_location": "L19", "_origin": "ast", "id": "clinicservice_serviceitemdeletecleanuptest_serviceitemdeletecleanuptest_testdeletingitempurgestariffandcoverage", - "community": 86, + "community": 618, "norm_label": ".testdeletingitempurgestariffandcoverage()" }, { @@ -41442,7 +41512,7 @@ "source_location": "L1", "_origin": "ast", "id": "insurance_tenantinsurancecleanuptest", - "community": 618, + "community": 491, "norm_label": "tenantinsurancecleanuptest.php" }, { @@ -41452,7 +41522,7 @@ "source_location": "L16", "_origin": "ast", "id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest", - "community": 618, + "community": 491, "norm_label": "tenantinsurancecleanuptest" }, { @@ -41462,7 +41532,7 @@ "source_location": "L18", "_origin": "ast", "id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest_testpurgeremovestenantinsurancepricingandcoverage", - "community": 618, + "community": 491, "norm_label": ".testpurgeremovestenantinsurancepricingandcoverage()" }, { @@ -41472,7 +41542,7 @@ "source_location": "L49", "_origin": "ast", "id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest_testdeletedoctorendpointpurgesinsuranceconfig", - "community": 618, + "community": 491, "norm_label": ".testdeletedoctorendpointpurgesinsuranceconfig()" }, { @@ -41592,7 +41662,7 @@ "source_location": "L1", "_origin": "ast", "id": "rating_commentlistnplusonetest", - "community": 636, + "community": 22, "norm_label": "commentlistnplusonetest.php" }, { @@ -41602,7 +41672,7 @@ "source_location": "L17", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest", - "community": 636, + "community": 22, "norm_label": "commentlistnplusonetest" }, { @@ -41612,7 +41682,7 @@ "source_location": "L19", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_testtreeisserializedcorrectly", - "community": 636, + "community": 22, "norm_label": ".testtreeisserializedcorrectly()" }, { @@ -41622,7 +41692,7 @@ "source_location": "L52", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_jsonget", - "community": 636, + "community": 22, "norm_label": ".jsonget()" }, { @@ -41632,7 +41702,7 @@ "source_location": "L64", "_origin": "ast", "id": "rating_commentlistnplusonetest_commentlistnplusonetest_testrepositoryfetchjoinscollections", - "community": 636, + "community": 22, "norm_label": ".testrepositoryfetchjoinscollections()" }, { @@ -41962,7 +42032,7 @@ "source_location": "L1", "_origin": "ast", "id": "smoke_infrasmoketest", - "community": 495, + "community": 86, "norm_label": "infrasmoketest.php" }, { @@ -41972,7 +42042,7 @@ "source_location": "L11", "_origin": "ast", "id": "smoke_infrasmoketest_infrasmoketest", - "community": 495, + "community": 86, "norm_label": "infrasmoketest" }, { @@ -41982,7 +42052,7 @@ "source_location": "L13", "_origin": "ast", "id": "smoke_infrasmoketest_infrasmoketest_testhealthispublicand200", - "community": 495, + "community": 86, "norm_label": ".testhealthispublicand200()" }, { @@ -41992,7 +42062,7 @@ "source_location": "L19", "_origin": "ast", "id": "smoke_infrasmoketest_infrasmoketest_testunauthenticatedapiis401", - "community": 495, + "community": 86, "norm_label": ".testunauthenticatedapiis401()" }, { @@ -42002,7 +42072,7 @@ "source_location": "L25", "_origin": "ast", "id": "smoke_infrasmoketest_infrasmoketest_testjwtauthreachesuserinfo", - "community": 495, + "community": 86, "norm_label": ".testjwtauthreachesuserinfo()" }, { @@ -42012,7 +42082,7 @@ "source_location": "L35", "_origin": "ast", "id": "smoke_infrasmoketest_infrasmoketest_testwalletusertypeindexexists", - "community": 495, + "community": 86, "norm_label": ".testwalletusertypeindexexists()" }, { @@ -52425,6 +52495,166 @@ "community": 191, "norm_label": "\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, + { + "label": "production-fixes-cors-payment-gateways.md", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways", + "community": 495, + "norm_label": "production-fixes-cors-payment-gateways.md" + }, + { + "label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646: CORS + payment/config 500 + \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0648 callback \u0645\u0644\u062a", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "community": 495, + "norm_label": "\u0631\u0641\u0639 \u0628\u0627\u06af\u200c\u0647\u0627\u06cc \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646: cors + payment/config 500 + \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644 \u0648 callback \u0645\u0644\u062a" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u067e\u0631\u0648\u0698\u0647", + "community": 495, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0632\u0645\u06cc\u0646\u0647", + "community": 495, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 495, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 495, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "CORS \u2014 `config/packages/nelmio_cors.yaml`", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L33", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_cors_config_packages_nelmio_cors_yaml", + "community": 495, + "norm_label": "cors \u2014 `config/packages/nelmio_cors.yaml`" + }, + { + "label": "payment/config \u2014 `PaymentController::config()` (\u062e\u0637 \u06f5\u06f4\u06f6)", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L63", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_payment_config_paymentcontroller_config_\u062e\u0637_\u06f5\u06f4\u06f6", + "community": 495, + "norm_label": "payment/config \u2014 `paymentcontroller::config()` (\u062e\u0637 \u06f5\u06f4\u06f6)" + }, + { + "label": "resolveGateway + callback (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L77", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_resolvegateway_callback_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 495, + "norm_label": "resolvegateway + callback (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "MellatGateway \u2014 \u062a\u0634\u062e\u06cc\u0635 \u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L102", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_mellatgateway_\u062a\u0634\u062e\u06cc\u0635_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646", + "community": 495, + "norm_label": "mellatgateway \u2014 \u062a\u0634\u062e\u06cc\u0635 \u0641\u0639\u0627\u0644\u200c\u0628\u0648\u062f\u0646" + }, + { + "label": "\u0641\u0631\u0627\u0646\u062a \u2014 `SubscriptionPage.tsx`", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L112", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0641\u0631\u0627\u0646\u062a_subscriptionpage_tsx", + "community": 495, + "norm_label": "\u0641\u0631\u0627\u0646\u062a \u2014 `subscriptionpage.tsx`" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L123", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", + "community": 495, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0631\u0641\u0639 CORS \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L125", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u06f1_\u0631\u0641\u0639_cors_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", + "community": 495, + "norm_label": "\u06f1. \u0631\u0641\u0639 cors \u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646" + }, + { + "label": "\u06f2. \u0631\u0641\u0639 payment/config 500 + \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L145", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u06f2_\u0631\u0641\u0639_payment_config_500_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644", + "community": 495, + "norm_label": "\u06f2. \u0631\u0641\u0639 payment/config 500 + \u0641\u0642\u0637 \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627\u06cc \u0641\u0639\u0627\u0644" + }, + { + "label": "\u06f3. Callback \u0647\u0631 \u062f\u0631\u06af\u0627\u0647 \u0645\u0637\u0627\u0628\u0642 \u0631\u0627\u0647\u0646\u0645\u0627\u06cc IPG \u0645\u0644\u062a", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L189", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u06f3_callback_\u0647\u0631_\u062f\u0631\u06af\u0627\u0647_\u0645\u0637\u0627\u0628\u0642_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_ipg_\u0645\u0644\u062a", + "community": 495, + "norm_label": "\u06f3. callback \u0647\u0631 \u062f\u0631\u06af\u0627\u0647 \u0645\u0637\u0627\u0628\u0642 \u0631\u0627\u0647\u0646\u0645\u0627\u06cc ipg \u0645\u0644\u062a" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L203", + "_origin": "ast", + "id": "prompt_production_fixes_cors_payment_gateways_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 495, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, { "label": "profile-birthday-jalali-persist.md", "file_type": "document", @@ -52855,6 +53085,196 @@ "community": 152, "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" }, + { + "label": "qa-full-system-audit.md", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_qa_full_system_audit", + "community": 347, + "norm_label": "qa-full-system-audit.md" + }, + { + "label": "\u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 QA \u0633\u06cc\u0633\u062a\u0645 \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f Symfony API + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "community": 347, + "norm_label": "\u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 qa \u0633\u06cc\u0633\u062a\u0645 \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f symfony api + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 react" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u067e\u0631\u0648\u0698\u0647", + "community": 347, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0646\u0642\u0634 \u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0646\u0642\u0634_\u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", + "community": 347, + "norm_label": "\u0646\u0642\u0634 \u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L11", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0632\u0645\u06cc\u0646\u0647", + "community": 347, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L19", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0647\u062f\u0641", + "community": 347, + "norm_label": "\u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (\u0646\u0642\u0634\u0647\u0654 \u0633\u06cc\u0633\u062a\u0645 \u0628\u0631\u0627\u06cc \u062a\u0633\u062a)", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L25", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_\u0646\u0642\u0634\u0647_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0631\u0627\u06cc_\u062a\u0633\u062a", + "community": 347, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637 (\u0646\u0642\u0634\u0647 \u0633\u06cc\u0633\u062a\u0645 \u0628\u0631\u0627\u06cc \u062a\u0633\u062a)" + }, + { + "label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627 (\u0642\u0628\u0644 \u0627\u0632 \u0634\u0631\u0648\u0639 \u062a\u0633\u062a)", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L45", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u0633\u062a", + "community": 347, + "norm_label": "\u067e\u06cc\u0634\u200c\u0646\u06cc\u0627\u0632\u0647\u0627 (\u0642\u0628\u0644 \u0627\u0632 \u0634\u0631\u0648\u0639 \u062a\u0633\u062a)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L73", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "community": 347, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u0641\u0627\u0632 \u06f0 \u2014 Baseline", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L77", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f0_baseline", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f0 \u2014 baseline" + }, + { + "label": "\u0641\u0627\u0632 \u06f1 \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u067e\u0627\u0633\u062e \u0648 Envelope", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L87", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f1_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0627\u0633\u062e_\u0648_envelope", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f1 \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u067e\u0627\u0633\u062e \u0648 envelope" + }, + { + "label": "\u0641\u0627\u0632 \u06f2 \u2014 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627 (Auth / RBAC)", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L105", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f2_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627_auth_rbac", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f2 \u2014 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u0648 \u0645\u062c\u0648\u0632\u0647\u0627 (auth / rbac)" + }, + { + "label": "\u0641\u0627\u0632 \u06f3 \u2014 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0648\u0631\u0648\u062f\u06cc \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u062e\u0637\u0627", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L121", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f3 \u2014 \u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc \u0648\u0631\u0648\u062f\u06cc \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u062e\u0637\u0627" + }, + { + "label": "\u0641\u0627\u0632 \u06f4 \u2014 \u0627\u0645\u0646\u06cc\u062a API", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L129", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f4_\u0627\u0645\u0646\u06cc\u062a_api", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f4 \u2014 \u0627\u0645\u0646\u06cc\u062a api" + }, + { + "label": "\u0641\u0627\u0632 \u06f5 \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React SPA", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L137", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f5_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react_spa", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f5 \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 react spa" + }, + { + "label": "\u0641\u0627\u0632 \u06f6 \u2014 \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0648 \u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc \u0648\u0627\u0642\u0639\u06cc \u06a9\u0627\u0631\u0628\u0631 (E2E)", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L153", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f6_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0648_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u06a9\u0627\u0631\u0628\u0631_e2e", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f6 \u2014 \u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc \u0648 \u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc \u0648\u0627\u0642\u0639\u06cc \u06a9\u0627\u0631\u0628\u0631 (e2e)" + }, + { + "label": "\u0641\u0627\u0632 \u06f7 \u2014 \u062a\u062f\u0648\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L164", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f7_\u062a\u062f\u0648\u06cc\u0646_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc", + "community": 347, + "norm_label": "\u0641\u0627\u0632 \u06f7 \u2014 \u062a\u062f\u0648\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0646\u0647\u0627\u06cc\u06cc" + }, + { + "label": "\u0642\u0627\u0644\u0628 \u06af\u0632\u0627\u0631\u0634 (\u0628\u0631\u0627\u06cc \u0647\u0631 \u06cc\u0627\u0641\u062a\u0647)", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L170", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0642\u0627\u0644\u0628_\u06af\u0632\u0627\u0631\u0634_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u06cc\u0627\u0641\u062a\u0647", + "community": 347, + "norm_label": "\u0642\u0627\u0644\u0628 \u06af\u0632\u0627\u0631\u0634 (\u0628\u0631\u0627\u06cc \u0647\u0631 \u06cc\u0627\u0641\u062a\u0647)" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L189", + "_origin": "ast", + "id": "prompt_qa_full_system_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 347, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, { "label": "rating-multidimensional-and-rich-comments.md", "file_type": "document", @@ -54365,6 +54785,136 @@ "community": 100, "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" }, + { + "label": "secretary-welcome-sms.md", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms", + "community": 544, + "norm_label": "secretary-welcome-sms.md" + }, + { + "label": "\u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u062e\u0648\u0634\u200c\u0622\u0645\u062f \u0647\u0646\u06af\u0627\u0645 \u062a\u0639\u0631\u06cc\u0641 \u0645\u0646\u0634\u06cc \u062c\u062f\u06cc\u062f", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "community": 544, + "norm_label": "\u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u062e\u0648\u0634\u200c\u0627\u0645\u062f \u0647\u0646\u06af\u0627\u0645 \u062a\u0639\u0631\u06cc\u0641 \u0645\u0646\u0634\u06cc \u062c\u062f\u06cc\u062f" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u067e\u0631\u0648\u0698\u0647", + "community": 544, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0632\u0645\u06cc\u0646\u0647", + "community": 544, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L13", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0647\u062f\u0641", + "community": 544, + "norm_label": "\u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L17", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 544, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L29", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "community": 544, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L71", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "community": 544, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u06af \u062c\u062f\u06cc\u062f \u062f\u0631 `SmsLog`", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L73", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u06af_\u062c\u062f\u06cc\u062f_\u062f\u0631_smslog", + "community": 544, + "norm_label": "\u06f1. \u0627\u0641\u0632\u0648\u062f\u0646 \u062a\u06af \u062c\u062f\u06cc\u062f \u062f\u0631 `smslog`" + }, + { + "label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 template \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062f\u0631 `SmsMessageTemplate::DEFAULTS`", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L83", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_template_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062f\u0631_smsmessagetemplate_defaults", + "community": 544, + "norm_label": "\u06f2. \u0627\u0641\u0632\u0648\u062f\u0646 template \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u062f\u0631 `smsmessagetemplate::defaults`" + }, + { + "label": "\u06f3. \u062a\u0632\u0631\u06cc\u0642 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627\u06cc SMS \u062f\u0631 \u06a9\u0646\u062a\u0631\u0644\u0631", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L100", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u06f3_\u062a\u0632\u0631\u06cc\u0642_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_sms_\u062f\u0631_\u06a9\u0646\u062a\u0631\u0644\u0631", + "community": 544, + "norm_label": "\u06f3. \u062a\u0632\u0631\u06cc\u0642 \u0633\u0631\u0648\u06cc\u0633\u200c\u0647\u0627\u06cc sms \u062f\u0631 \u06a9\u0646\u062a\u0631\u0644\u0631" + }, + { + "label": "\u06f4. \u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0639\u062f \u0627\u0632 \u0633\u0627\u062e\u062a \u0645\u0648\u0641\u0642 \u0645\u0646\u0634\u06cc", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L112", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u06f4_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0639\u062f_\u0627\u0632_\u0633\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0645\u0646\u0634\u06cc", + "community": 544, + "norm_label": "\u06f4. \u0627\u0631\u0633\u0627\u0644 \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0639\u062f \u0627\u0632 \u0633\u0627\u062e\u062a \u0645\u0648\u0641\u0642 \u0645\u0646\u0634\u06cc" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L132", + "_origin": "ast", + "id": "prompt_secretary_welcome_sms_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 544, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, { "label": "seed-realistic-data.md", "file_type": "document", @@ -55295,6 +55845,246 @@ "community": 60, "norm_label": "\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc" }, + { + "label": "sms-settings-apikey-env-only.md", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only", + "community": 213, + "norm_label": "sms-settings-apikey-env-only.md" + }, + { + "label": "\u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u00ab\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0627\u0645\u06a9 (SMS)\u00bb \u2014 \u0641\u0642\u0637 API Key \u0627\u0632 env", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L1", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "community": 213, + "norm_label": "\u0633\u0627\u062f\u0647\u200c\u0633\u0627\u0632\u06cc \u00ab\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0627\u0645\u06a9 (sms)\u00bb \u2014 \u0641\u0642\u0637 api key \u0627\u0632 env" + }, + { + "label": "\u067e\u0631\u0648\u0698\u0647", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L3", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u067e\u0631\u0648\u0698\u0647", + "community": 213, + "norm_label": "\u067e\u0631\u0648\u0698\u0647" + }, + { + "label": "\u0632\u0645\u06cc\u0646\u0647", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L7", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0632\u0645\u06cc\u0646\u0647", + "community": 213, + "norm_label": "\u0632\u0645\u06cc\u0646\u0647" + }, + { + "label": "\u0647\u062f\u0641", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L23", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0647\u062f\u0641", + "community": 213, + "norm_label": "\u0647\u062f\u0641" + }, + { + "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L31", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "community": 213, + "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637" + }, + { + "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L47", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "community": 213, + "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc (\u06a9\u062f \u0648\u0627\u0642\u0639\u06cc)" + }, + { + "label": "\u06f1. \u0641\u0631\u0645 \u067e\u0646\u0644 \u2014 `assets/admin/pages/SettingsPage.tsx`", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L49", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f1_\u0641\u0631\u0645_\u067e\u0646\u0644_assets_admin_pages_settingspage_tsx", + "community": 213, + "norm_label": "\u06f1. \u0641\u0631\u0645 \u067e\u0646\u0644 \u2014 `assets/admin/pages/settingspage.tsx`" + }, + { + "label": "\u06f2. `src/Config/Repository/SiteConfigRepository.php` \u2014 `DEFAULTS` (\u062e\u0637\u0648\u0637 \u06f3\u06f2\u2013\u06f3\u06f7)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L98", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f2_src_config_repository_siteconfigrepository_php_defaults_\u062e\u0637\u0648\u0637_\u06f3\u06f2_\u06f3\u06f7", + "community": 213, + "norm_label": "\u06f2. `src/config/repository/siteconfigrepository.php` \u2014 `defaults` (\u062e\u0637\u0648\u0637 \u06f3\u06f2\u2013\u06f3\u06f7)" + }, + { + "label": "\u06f3. `src/Config/Controller/SiteConfigController.php` \u2014 `ALLOWED_KEYS` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f4)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L110", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f3_src_config_controller_siteconfigcontroller_php_allowed_keys_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f4", + "community": 213, + "norm_label": "\u06f3. `src/config/controller/siteconfigcontroller.php` \u2014 `allowed_keys` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f4)" + }, + { + "label": "\u06f4. `src/Sms/Provider/KavehNegarProvider.php` (\u062e\u0637\u0648\u0637 \u06f1\u06f3\u2013\u06f2\u06f4)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L122", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f4_src_sms_provider_kavehnegarprovider_php_\u062e\u0637\u0648\u0637_\u06f1\u06f3_\u06f2\u06f4", + "community": 213, + "norm_label": "\u06f4. `src/sms/provider/kavehnegarprovider.php` (\u062e\u0637\u0648\u0637 \u06f1\u06f3\u2013\u06f2\u06f4)" + }, + { + "label": "\u06f5. `src/Sms/Controller/SmsWalletController.php` (\u062e\u0637 \u06f5\u06f6)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L137", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f5_src_sms_controller_smswalletcontroller_php_\u062e\u0637_\u06f5\u06f6", + "community": 213, + "norm_label": "\u06f5. `src/sms/controller/smswalletcontroller.php` (\u062e\u0637 \u06f5\u06f6)" + }, + { + "label": "\u06f6. `config/services.yaml` (\u062e\u0637\u0648\u0637 \u06f9\u06f2\u2013\u06f9\u06f9)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L143", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f6_config_services_yaml_\u062e\u0637\u0648\u0637_\u06f9\u06f2_\u06f9\u06f9", + "community": 213, + "norm_label": "\u06f6. `config/services.yaml` (\u062e\u0637\u0648\u0637 \u06f9\u06f2\u2013\u06f9\u06f9)" + }, + { + "label": "\u06f7. env \u0641\u0639\u0644\u06cc \u2014 `.env` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f2 \u0648 \u06f6\u06f0\u2013\u06f6\u06f4)", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L157", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f7_env_\u0641\u0639\u0644\u06cc_env_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f2_\u0648_\u06f6\u06f0_\u06f6\u06f4", + "community": 213, + "norm_label": "\u06f7. env \u0641\u0639\u0644\u06cc \u2014 `.env` (\u062e\u0637\u0648\u0637 \u06f3\u06f8\u2013\u06f4\u06f2 \u0648 \u06f6\u06f0\u2013\u06f6\u06f4)" + }, + { + "label": "\u0648\u0638\u0627\u06cc\u0641", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L177", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "community": 213, + "norm_label": "\u0648\u0638\u0627\u06cc\u0641" + }, + { + "label": "\u06f1. Backend \u2014 provider \u06a9\u0627\u0648\u0647\u200c\u0646\u06af\u0627\u0631 \u0641\u0642\u0637 \u0627\u0632 env", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L179", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f1_backend_provider_\u06a9\u0627\u0648\u0647_\u0646\u06af\u0627\u0631_\u0641\u0642\u0637_\u0627\u0632_env", + "community": 213, + "norm_label": "\u06f1. backend \u2014 provider \u06a9\u0627\u0648\u0647\u200c\u0646\u06af\u0627\u0631 \u0641\u0642\u0637 \u0627\u0632 env" + }, + { + "label": "\u06f2. Backend \u2014 \u062d\u0630\u0641 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc SMS \u0627\u0632 config", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L193", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f2_backend_\u062d\u0630\u0641_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_sms_\u0627\u0632_config", + "community": 213, + "norm_label": "\u06f2. backend \u2014 \u062d\u0630\u0641 \u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc sms \u0627\u0632 config" + }, + { + "label": "\u06f3. Backend \u2014 \u0642\u06cc\u0645\u062a \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0647 \u062b\u0627\u0628\u062a", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L198", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f3_backend_\u0642\u06cc\u0645\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0647_\u062b\u0627\u0628\u062a", + "community": 213, + "norm_label": "\u06f3. backend \u2014 \u0642\u06cc\u0645\u062a \u067e\u06cc\u0627\u0645\u06a9 \u0628\u0647 \u062b\u0627\u0628\u062a" + }, + { + "label": "\u06f4. Backend \u2014 \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a read-only \u06a9\u0644\u06cc\u062f \u062f\u0631 \u067e\u0646\u0644", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L213", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f4_backend_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_read_only_\u06a9\u0644\u06cc\u062f_\u062f\u0631_\u067e\u0646\u0644", + "community": 213, + "norm_label": "\u06f4. backend \u2014 \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a read-only \u06a9\u0644\u06cc\u062f \u062f\u0631 \u067e\u0646\u0644" + }, + { + "label": "\u06f5. `config/services.yaml`", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L230", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f5_config_services_yaml", + "community": 213, + "norm_label": "\u06f5. `config/services.yaml`" + }, + { + "label": "\u06f6. Frontend \u2014 `assets/admin/pages/SettingsPage.tsx`", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L242", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f6_frontend_assets_admin_pages_settingspage_tsx", + "community": 213, + "norm_label": "\u06f6. frontend \u2014 `assets/admin/pages/settingspage.tsx`" + }, + { + "label": "\u06f7. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0647\u0645\u0647 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc env", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L277", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f7_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0647\u0645\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_env", + "community": 213, + "norm_label": "\u06f7. \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0647\u0645\u0647 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc env" + }, + { + "label": "\u06f8. \u0645\u0633\u062a\u0646\u062f\u0627\u062a \u2014 `docs/api/sms.md`", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L295", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_docs_api_sms_md", + "community": 213, + "norm_label": "\u06f8. \u0645\u0633\u062a\u0646\u062f\u0627\u062a \u2014 `docs/api/sms.md`" + }, + { + "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", + "file_type": "document", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L303", + "_origin": "ast", + "id": "prompt_sms_settings_apikey_env_only_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "community": 213, + "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645" + }, { "label": "specialty-doctor-counts.md", "file_type": "document", @@ -57612,7 +58402,7 @@ "source_location": "L55", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644", - "community": 277, + "community": 606, "norm_label": "\u06f1. \u0645\u0639\u0631\u0641\u06cc \u0645\u062d\u0635\u0648\u0644" }, { @@ -57622,7 +58412,7 @@ "source_location": "L59", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f1_\u06f1_\u0646\u0642\u0634_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645", - "community": 277, + "community": 606, "norm_label": "\u06f1.\u06f1 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645" }, { @@ -57632,7 +58422,7 @@ "source_location": "L71", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f1_\u06f2_\u0641\u0644\u0648\u0647\u0627\u06cc_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc_\u0627\u0635\u0644\u06cc", - "community": 277, + "community": 606, "norm_label": "\u06f1.\u06f2 \u0641\u0644\u0648\u0647\u0627\u06cc \u0639\u0645\u0644\u06cc\u0627\u062a\u06cc \u0627\u0635\u0644\u06cc" }, { @@ -57642,7 +58432,7 @@ "source_location": "L73", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0645\u0633\u062a\u0642\u0644", - "community": 277, + "community": 606, "norm_label": "\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u062f\u06a9\u062a\u0631 \u2014 \u0645\u0633\u062a\u0642\u0644" }, { @@ -57652,7 +58442,7 @@ "source_location": "L81", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u06a9\u0644\u06cc\u0646\u06cc\u06a9", - "community": 277, + "community": 606, "norm_label": "\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u062f\u06a9\u062a\u0631 \u2014 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u06a9\u0644\u06cc\u0646\u06cc\u06a9" }, { @@ -57662,7 +58452,7 @@ "source_location": "L91", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u062b\u0628\u062a_\u0646\u0627\u0645_\u062f\u06a9\u062a\u0631_\u0627\u0632_\u0637\u0631\u06cc\u0642_\u0646\u0645\u0627\u06cc\u0646\u062f\u0647", - "community": 277, + "community": 606, "norm_label": "\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u062f\u06a9\u062a\u0631 \u2014 \u0627\u0632 \u0637\u0631\u06cc\u0642 \u0646\u0645\u0627\u06cc\u0646\u062f\u0647" }, { @@ -57672,7 +58462,7 @@ "source_location": "L99", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f1_\u06f3_\u067e\u0644\u0646_\u0647\u0627\u06cc_\u0627\u0634\u062a\u0631\u0627\u06a9", - "community": 277, + "community": 606, "norm_label": "\u06f1.\u06f3 \u067e\u0644\u0646\u200c\u0647\u0627\u06cc \u0627\u0634\u062a\u0631\u0627\u06a9" }, { @@ -57682,7 +58472,7 @@ "source_location": "L111", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f1_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u067e\u06cc\u0627\u0645\u06a9", - "community": 277, + "community": 606, "norm_label": "\u06f1.\u06f4 \u0633\u06cc\u0633\u062a\u0645 \u067e\u06cc\u0627\u0645\u06a9" }, { @@ -57712,7 +58502,7 @@ "source_location": "L147", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u0627\u0646\u0648\u0627\u0639_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_category_types", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2 \u0627\u0646\u0648\u0627\u0639 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc (category types)" }, { @@ -57722,7 +58512,7 @@ "source_location": "L151", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f1_\u062a\u06af_tag", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f1 \u062a\u06af (tag)" }, { @@ -57732,7 +58522,7 @@ "source_location": "L163", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f2_\u0627\u0633\u062a\u0627\u0646_state", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f2 \u0627\u0633\u062a\u0627\u0646 (state)" }, { @@ -57742,7 +58532,7 @@ "source_location": "L175", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f3_\u0634\u0647\u0631_city", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f3 \u0634\u0647\u0631 (city)" }, { @@ -57752,7 +58542,7 @@ "source_location": "L201", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f4_\u0628\u06cc\u0645\u0647_\u067e\u0627\u06cc\u0647_basic_insurance", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f4 \u0628\u06cc\u0645\u0647 \u067e\u0627\u06cc\u0647 (basic insurance)" }, { @@ -57762,7 +58552,7 @@ "source_location": "L214", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f5_\u0628\u06cc\u0645\u0647_\u0645\u06a9\u0645\u0644_supplementary_insurance", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f5 \u0628\u06cc\u0645\u0647 \u0645\u06a9\u0645\u0644 (supplementary insurance)" }, { @@ -57772,7 +58562,7 @@ "source_location": "L218", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f6_\u062a\u062e\u0635\u0635_\u062f\u06a9\u062a\u0631_doctor_specialty", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f6 \u062a\u062e\u0635\u0635 \u062f\u06a9\u062a\u0631 (doctor specialty)" }, { @@ -57782,7 +58572,7 @@ "source_location": "L231", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f7_\u062e\u062f\u0645\u0627\u062a_\u062f\u06a9\u062a\u0631_doctor_services", - "community": 207, + "community": 634, "norm_label": "\u06f2.\u06f2.\u06f7 \u062e\u062f\u0645\u0627\u062a \u062f\u06a9\u062a\u0631 (doctor services)" }, { @@ -57842,7 +58632,7 @@ "source_location": "L356", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a_appointment_settings", - "community": 207, + "community": 656, "norm_label": "\u06f2.\u06f8 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0648\u0628\u062a (appointment settings)" }, { @@ -57852,7 +58642,7 @@ "source_location": "L360", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f1_\u0628\u0631\u0646\u0627\u0645\u0647_\u0647\u0641\u062a\u06af\u06cc_weekly_schedule", - "community": 207, + "community": 656, "norm_label": "\u06f2.\u06f8.\u06f1 \u0628\u0631\u0646\u0627\u0645\u0647 \u0647\u0641\u062a\u06af\u06cc (weekly schedule)" }, { @@ -57862,7 +58652,7 @@ "source_location": "L373", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f2_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a_holidays", - "community": 207, + "community": 656, "norm_label": "\u06f2.\u06f8.\u06f2 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a (holidays)" }, { @@ -57872,7 +58662,7 @@ "source_location": "L388", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f3_\u0644\u063a\u0648_\u062a\u0639\u0637\u06cc\u0644_date_override", - "community": 207, + "community": 656, "norm_label": "\u06f2.\u06f8.\u06f3 \u0644\u063a\u0648 \u062a\u0639\u0637\u06cc\u0644 (date override)" }, { @@ -57882,7 +58672,7 @@ "source_location": "L404", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f4_\u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645_\u0645\u062d\u0627\u0633\u0628\u0647_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc", - "community": 207, + "community": 656, "norm_label": "\u06f2.\u06f8.\u06f4 \u0627\u0644\u06af\u0648\u0631\u06cc\u062a\u0645 \u0645\u062d\u0627\u0633\u0628\u0647 \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u062e\u0627\u0644\u06cc" }, { @@ -57952,7 +58742,7 @@ "source_location": "L524", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u0646\u0638\u0631\u0627\u062a_\u0644\u0627\u06cc\u06a9_\u0648_\u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc", - "community": 207, + "community": 671, "norm_label": "\u06f2.\u06f1\u06f3 \u0646\u0638\u0631\u0627\u062a\u060c \u0644\u0627\u06cc\u06a9 \u0648 \u0627\u0645\u062a\u06cc\u0627\u0632\u062f\u0647\u06cc" }, { @@ -57962,7 +58752,7 @@ "source_location": "L526", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f1_\u0646\u0638\u0631_comment", - "community": 207, + "community": 671, "norm_label": "\u06f2.\u06f1\u06f3.\u06f1 \u0646\u0638\u0631 (comment)" }, { @@ -57972,7 +58762,7 @@ "source_location": "L539", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f2_\u0644\u0627\u06cc\u06a9_like", - "community": 207, + "community": 671, "norm_label": "\u06f2.\u06f1\u06f3.\u06f2 \u0644\u0627\u06cc\u06a9 (like)" }, { @@ -57982,7 +58772,7 @@ "source_location": "L550", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f3_\u0627\u0645\u062a\u06cc\u0627\u0632_rate", - "community": 207, + "community": 671, "norm_label": "\u06f2.\u06f1\u06f3.\u06f3 \u0627\u0645\u062a\u06cc\u0627\u0632 (rate)" }, { @@ -58102,7 +58892,7 @@ "source_location": "L646", "_origin": "ast", "id": "docs_clinicpro_manual_v2_task_08_api_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0647\u0627", - "community": 255, + "community": 667, "norm_label": "task-08: api \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627" }, { @@ -58112,7 +58902,7 @@ "source_location": "L650", "_origin": "ast", "id": "docs_clinicpro_manual_v2_get_api_v1_categories_states_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627", - "community": 255, + "community": 667, "norm_label": "get /api/v1/categories/states \u2014 \u0627\u0633\u062a\u0627\u0646\u200c\u0647\u0627" }, { @@ -58122,7 +58912,7 @@ "source_location": "L659", "_origin": "ast", "id": "docs_clinicpro_manual_v2_get_api_v1_categories_cities_\u0634\u0647\u0631\u0647\u0627", - "community": 255, + "community": 667, "norm_label": "get /api/v1/categories/cities \u2014 \u0634\u0647\u0631\u0647\u0627" }, { @@ -58132,7 +58922,7 @@ "source_location": "L668", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0633\u0627\u06cc\u0631_endpoint_\u0647\u0627\u06cc_\u062f\u0633\u062a\u0647_\u0628\u0646\u062f\u06cc_\u0627\u0644\u0632\u0627\u0645\u06cc", - "community": 255, + "community": 667, "norm_label": "\u0633\u0627\u06cc\u0631 endpoint \u0647\u0627\u06cc \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc \u2014 \u0627\u0644\u0632\u0627\u0645\u06cc" }, { @@ -58142,7 +58932,7 @@ "source_location": "L678", "_origin": "ast", "id": "docs_clinicpro_manual_v2_task_09_api_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u0646\u0648\u0628\u062a", - "community": 255, + "community": 666, "norm_label": "task-09: api \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0648\u0628\u062a" }, { @@ -58152,7 +58942,7 @@ "source_location": "L680", "_origin": "ast", "id": "docs_clinicpro_manual_v2_get_api_v1_appointment_settings_slots_\u062f\u0631\u06cc\u0627\u0641\u062a_\u0627\u0633\u0644\u0627\u062a_\u0647\u0627\u06cc_\u062e\u0627\u0644\u06cc", - "community": 255, + "community": 666, "norm_label": "get /api/v1/appointment-settings/slots \u2014 \u062f\u0631\u06cc\u0627\u0641\u062a \u0627\u0633\u0644\u0627\u062a\u200c\u0647\u0627\u06cc \u062e\u0627\u0644\u06cc" }, { @@ -58162,7 +58952,7 @@ "source_location": "L689", "_origin": "ast", "id": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_overrides_\u062b\u0628\u062a_override_\u062a\u0648\u0633\u0637_\u062f\u06a9\u062a\u0631", - "community": 255, + "community": 666, "norm_label": "post /api/v1/appointment-settings/overrides \u2014 \u062b\u0628\u062a override \u062a\u0648\u0633\u0637 \u062f\u06a9\u062a\u0631" }, { @@ -58172,7 +58962,7 @@ "source_location": "L698", "_origin": "ast", "id": "docs_clinicpro_manual_v2_post_api_v1_appointment_settings_holidays_\u062b\u0628\u062a_\u062a\u0639\u0637\u06cc\u0644\u06cc_\u0641\u0642\u0637_\u0627\u062f\u0645\u06cc\u0646", - "community": 255, + "community": 666, "norm_label": "post /api/v1/appointment-settings/holidays \u2014 \u062b\u0628\u062a \u062a\u0639\u0637\u06cc\u0644\u06cc (\u0641\u0642\u0637 \u0627\u062f\u0645\u06cc\u0646)" }, { @@ -58182,7 +58972,7 @@ "source_location": "L707", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u062d\u0633\u0627\u0628_\u0648_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9", - "community": 277, + "community": 639, "norm_label": "\u06f4. \u0633\u06cc\u0633\u062a\u0645 \u062d\u0633\u0627\u0628 \u0648 \u0635\u0641 \u067e\u06cc\u0627\u0645\u06a9" }, { @@ -58192,7 +58982,7 @@ "source_location": "L709", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f4_\u06f1_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9_sms_account", - "community": 277, + "community": 639, "norm_label": "\u06f4.\u06f1 \u062d\u0633\u0627\u0628 \u067e\u06cc\u0627\u0645\u06a9 (sms account)" }, { @@ -58202,7 +58992,7 @@ "source_location": "L721", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f4_\u06f2_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9_sms_queue", - "community": 277, + "community": 639, "norm_label": "\u06f4.\u06f2 \u0635\u0641 \u067e\u06cc\u0627\u0645\u06a9 (sms queue)" }, { @@ -58212,7 +59002,7 @@ "source_location": "L737", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9", - "community": 277, + "community": 639, "norm_label": "\u06f4.\u06f3 api \u067e\u06cc\u0627\u0645\u06a9" }, { @@ -58222,7 +59012,7 @@ "source_location": "L739", "_origin": "ast", "id": "docs_clinicpro_manual_v2_post_api_v1_sms_queue_\u0627\u0641\u0632\u0648\u062f\u0646_\u0628\u0647_\u0635\u0641", - "community": 277, + "community": 639, "norm_label": "post /api/v1/sms/queue \u2014 \u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0647 \u0635\u0641" }, { @@ -58232,7 +59022,7 @@ "source_location": "L748", "_origin": "ast", "id": "docs_clinicpro_manual_v2_get_api_v1_sms_balance_\u0645\u0648\u062c\u0648\u062f\u06cc_\u062d\u0633\u0627\u0628_\u067e\u06cc\u0627\u0645\u06a9", - "community": 277, + "community": 639, "norm_label": "get /api/v1/sms/balance \u2014 \u0645\u0648\u062c\u0648\u062f\u06cc \u062d\u0633\u0627\u0628 \u067e\u06cc\u0627\u0645\u06a9" }, { @@ -59372,7 +60162,7 @@ "source_location": "L3011", "_origin": "ast", "id": "docs_clinicpro_manual_v2_31_patch_patch", - "community": 304, + "community": 649, "norm_label": "31. \ud83d\udfe1 `patch` patch" }, { @@ -59382,7 +60172,7 @@ "source_location": "L3021", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3021", - "community": 304, + "community": 649, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59392,7 +60182,7 @@ "source_location": "L3027", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3027", - "community": 304, + "community": 649, "norm_label": "request body" }, { @@ -59402,7 +60192,7 @@ "source_location": "L3044", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3044", - "community": 304, + "community": 649, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59412,7 +60202,7 @@ "source_location": "L3067", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3067", - "community": 304, + "community": 649, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59422,7 +60212,7 @@ "source_location": "L3075", "_origin": "ast", "id": "docs_clinicpro_manual_v2_32_post_post", - "community": 304, + "community": 650, "norm_label": "32. \ud83d\udd35 `post` post" }, { @@ -59432,7 +60222,7 @@ "source_location": "L3085", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3085", - "community": 304, + "community": 650, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59442,7 +60232,7 @@ "source_location": "L3091", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3091", - "community": 304, + "community": 650, "norm_label": "request body" }, { @@ -59452,7 +60242,7 @@ "source_location": "L3110", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3110", - "community": 304, + "community": 650, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59462,7 +60252,7 @@ "source_location": "L3145", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3145", - "community": 304, + "community": 650, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59502,7 +60292,7 @@ "source_location": "L3177", "_origin": "ast", "id": "docs_clinicpro_manual_v2_34_post_image_logo", - "community": 304, + "community": 675, "norm_label": "34. \ud83d\udd35 `post` image logo" }, { @@ -59512,7 +60302,7 @@ "source_location": "L3185", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185", - "community": 304, + "community": 675, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59522,7 +60312,7 @@ "source_location": "L3193", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193", - "community": 304, + "community": 675, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59582,7 +60372,7 @@ "source_location": "L3250", "_origin": "ast", "id": "docs_clinicpro_manual_v2_36_get_get_my_rate", - "community": 304, + "community": 676, "norm_label": "36. \ud83d\udfe2 `get` get my rate" }, { @@ -59592,7 +60382,7 @@ "source_location": "L3260", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260", - "community": 304, + "community": 676, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59602,7 +60392,7 @@ "source_location": "L3267", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267", - "community": 304, + "community": 676, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59612,7 +60402,7 @@ "source_location": "L3275", "_origin": "ast", "id": "docs_clinicpro_manual_v2_37_post_post", - "community": 304, + "community": 655, "norm_label": "37. \ud83d\udd35 `post` post" }, { @@ -59622,7 +60412,7 @@ "source_location": "L3283", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3283", - "community": 304, + "community": 655, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59632,7 +60422,7 @@ "source_location": "L3290", "_origin": "ast", "id": "docs_clinicpro_manual_v2_request_body_3290", - "community": 304, + "community": 655, "norm_label": "request body" }, { @@ -59642,7 +60432,7 @@ "source_location": "L3302", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3302", - "community": 304, + "community": 655, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59652,7 +60442,7 @@ "source_location": "L3316", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3316", - "community": 304, + "community": 655, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59702,7 +60492,7 @@ "source_location": "L3354", "_origin": "ast", "id": "docs_clinicpro_manual_v2_39_patch_comment_confirmation", - "community": 304, + "community": 660, "norm_label": "39. \ud83d\udfe1 `patch` comment confirmation" }, { @@ -59712,7 +60502,7 @@ "source_location": "L3362", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3362", - "community": 304, + "community": 660, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59722,7 +60512,7 @@ "source_location": "L3369", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3369", - "community": 304, + "community": 660, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59732,7 +60522,7 @@ "source_location": "L3375", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3375", - "community": 304, + "community": 660, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59742,7 +60532,7 @@ "source_location": "L3383", "_origin": "ast", "id": "docs_clinicpro_manual_v2_40_post_post", - "community": 304, + "community": 661, "norm_label": "40. \ud83d\udd35 `post` post" }, { @@ -59752,7 +60542,7 @@ "source_location": "L3391", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3391", - "community": 304, + "community": 661, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59762,7 +60552,7 @@ "source_location": "L3398", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3398", - "community": 304, + "community": 661, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59772,7 +60562,7 @@ "source_location": "L3404", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3404", - "community": 304, + "community": 661, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59832,7 +60622,7 @@ "source_location": "L3461", "_origin": "ast", "id": "docs_clinicpro_manual_v2_42_delete_delete", - "community": 304, + "community": 677, "norm_label": "42. \ud83d\udd34 `delete` delete" }, { @@ -59842,7 +60632,7 @@ "source_location": "L3469", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3469", - "community": 304, + "community": 677, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59852,7 +60642,7 @@ "source_location": "L3476", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3476", - "community": 304, + "community": 677, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59862,7 +60652,7 @@ "source_location": "L3484", "_origin": "ast", "id": "docs_clinicpro_manual_v2_43_get_get", - "community": 304, + "community": 678, "norm_label": "43. \ud83d\udfe2 `get` get" }, { @@ -59872,7 +60662,7 @@ "source_location": "L3492", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492", - "community": 304, + "community": 678, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59882,7 +60672,7 @@ "source_location": "L3498", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498", - "community": 304, + "community": 678, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59932,7 +60722,7 @@ "source_location": "L3536", "_origin": "ast", "id": "docs_clinicpro_manual_v2_45_post_post", - "community": 304, + "community": 664, "norm_label": "45. \ud83d\udd35 `post` post" }, { @@ -59942,7 +60732,7 @@ "source_location": "L3544", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544", - "community": 304, + "community": 664, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59952,7 +60742,7 @@ "source_location": "L3551", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551", - "community": 304, + "community": 664, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -59962,7 +60752,7 @@ "source_location": "L3557", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557", - "community": 304, + "community": 664, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -59972,7 +60762,7 @@ "source_location": "L3565", "_origin": "ast", "id": "docs_clinicpro_manual_v2_46_patch_patch", - "community": 304, + "community": 665, "norm_label": "46. \ud83d\udfe1 `patch` patch" }, { @@ -59982,7 +60772,7 @@ "source_location": "L3573", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3573", - "community": 304, + "community": 665, "norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc" }, { @@ -59992,7 +60782,7 @@ "source_location": "L3580", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3580", - "community": 304, + "community": 665, "norm_label": "\u0645\u062b\u0627\u0644 request" }, { @@ -60002,7 +60792,7 @@ "source_location": "L3586", "_origin": "ast", "id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3586", - "community": 304, + "community": 665, "norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627" }, { @@ -62372,7 +63162,7 @@ "source_location": "L38", "_origin": "ast", "id": "prd_prd_\u0627\u067e\u06cc\u06a9_\u0647\u0627", - "community": 459, + "community": 500, "norm_label": "\u0627\u067e\u06cc\u06a9\u200c\u0647\u0627" }, { @@ -64162,7 +64952,7 @@ "source_location": "L585", "_origin": "ast", "id": "api_admin_payment_management", - "community": 201, + "community": 657, "norm_label": "payment management" }, { @@ -64172,7 +64962,7 @@ "source_location": "L587", "_origin": "ast", "id": "api_admin_get_api_v1_admin_payments", - "community": 201, + "community": 657, "norm_label": "get `/api/v1/admin/payments`" }, { @@ -64182,7 +64972,7 @@ "source_location": "L593", "_origin": "ast", "id": "api_admin_query_parameters_593", - "community": 201, + "community": 657, "norm_label": "query parameters" }, { @@ -64192,7 +64982,7 @@ "source_location": "L600", "_origin": "ast", "id": "api_admin_response_200_600", - "community": 201, + "community": 657, "norm_label": "response `200`" }, { @@ -64282,7 +65072,7 @@ "source_location": "L696", "_origin": "ast", "id": "api_admin_secretary_management", - "community": 649, + "community": 201, "norm_label": "secretary management" }, { @@ -64292,7 +65082,7 @@ "source_location": "L698", "_origin": "ast", "id": "api_admin_get_api_v1_admin_secretaries", - "community": 649, + "community": 201, "norm_label": "get `/api/v1/admin/secretaries`" }, { @@ -64302,7 +65092,7 @@ "source_location": "L704", "_origin": "ast", "id": "api_admin_query_parameters_704", - "community": 649, + "community": 201, "norm_label": "query parameters" }, { @@ -64312,7 +65102,7 @@ "source_location": "L711", "_origin": "ast", "id": "api_admin_response_200_711", - "community": 649, + "community": 201, "norm_label": "response `200`" }, { @@ -67872,7 +68662,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_doctor_service", - "community": 274, + "community": 92, "norm_label": "doctor-service.md" }, { @@ -68075,6 +68865,16 @@ "community": 92, "norm_label": "bulk import / export" }, + { + "label": "Sorting by id", + "file_type": "document", + "source_file": "docs/api/doctor-service.md", + "source_location": "L156", + "_origin": "ast", + "id": "api_doctor_service_sorting_by_id", + "community": 92, + "norm_label": "sorting by id" + }, { "label": "doctor.md", "file_type": "document", @@ -68602,7 +69402,7 @@ "source_location": "L11", "_origin": "ast", "id": "api_insurance_get_api_v1_insurances", - "community": 640, + "community": 228, "norm_label": "get `/api/v1/insurances`" }, { @@ -68612,7 +69412,7 @@ "source_location": "L17", "_origin": "ast", "id": "api_insurance_query_parameters", - "community": 640, + "community": 228, "norm_label": "query parameters" }, { @@ -68622,7 +69422,7 @@ "source_location": "L22", "_origin": "ast", "id": "api_insurance_response_200", - "community": 640, + "community": 228, "norm_label": "response `200`" }, { @@ -68632,7 +69432,7 @@ "source_location": "L47", "_origin": "ast", "id": "api_insurance_get_api_v1_admin_insurances", - "community": 634, + "community": 228, "norm_label": "get `/api/v1/admin/insurances`" }, { @@ -68642,7 +69442,7 @@ "source_location": "L53", "_origin": "ast", "id": "api_insurance_query_parameters_53", - "community": 634, + "community": 228, "norm_label": "query parameters" }, { @@ -68652,7 +69452,7 @@ "source_location": "L61", "_origin": "ast", "id": "api_insurance_response_200_61", - "community": 634, + "community": 228, "norm_label": "response `200`" }, { @@ -68662,7 +69462,7 @@ "source_location": "L70", "_origin": "ast", "id": "api_insurance_errors", - "community": 634, + "community": 228, "norm_label": "errors" }, { @@ -68712,7 +69512,7 @@ "source_location": "L113", "_origin": "ast", "id": "api_insurance_patch_api_v1_admin_insurance_id", - "community": 635, + "community": 228, "norm_label": "patch `/api/v1/admin/insurance/{id}`" }, { @@ -68722,7 +69522,7 @@ "source_location": "L119", "_origin": "ast", "id": "api_insurance_path_parameters", - "community": 635, + "community": 228, "norm_label": "path parameters" }, { @@ -68732,7 +69532,7 @@ "source_location": "L126", "_origin": "ast", "id": "api_insurance_response_200_126", - "community": 635, + "community": 228, "norm_label": "response `200`" }, { @@ -68742,7 +69542,7 @@ "source_location": "L129", "_origin": "ast", "id": "api_insurance_errors_129", - "community": 635, + "community": 228, "norm_label": "errors" }, { @@ -68772,7 +69572,7 @@ "source_location": "L151", "_origin": "ast", "id": "api_insurance_post_api_v1_admin_insurance_id_upload_logo", - "community": 641, + "community": 228, "norm_label": "post `/api/v1/admin/insurance/{id}/upload-logo`" }, { @@ -68782,7 +69582,7 @@ "source_location": "L157", "_origin": "ast", "id": "api_insurance_request", - "community": 641, + "community": 228, "norm_label": "request" }, { @@ -68792,7 +69592,7 @@ "source_location": "L164", "_origin": "ast", "id": "api_insurance_response_200_164", - "community": 641, + "community": 228, "norm_label": "response `200`" }, { @@ -68802,7 +69602,7 @@ "source_location": "L180", "_origin": "ast", "id": "api_insurance_post_api_v1_insurance", - "community": 542, + "community": 228, "norm_label": "post `/api/v1/insurance/`" }, { @@ -68812,7 +69612,7 @@ "source_location": "L186", "_origin": "ast", "id": "api_insurance_request_body_application_json_186", - "community": 542, + "community": 228, "norm_label": "request body (`application/json`)" }, { @@ -68822,7 +69622,7 @@ "source_location": "L201", "_origin": "ast", "id": "api_insurance_response_201_201", - "community": 542, + "community": 228, "norm_label": "response `201`" }, { @@ -68832,7 +69632,7 @@ "source_location": "L214", "_origin": "ast", "id": "api_insurance_errors_214", - "community": 542, + "community": 228, "norm_label": "errors" }, { @@ -68962,7 +69762,7 @@ "source_location": "L320", "_origin": "ast", "id": "api_insurance_put_api_v1_insurance_pricing", - "community": 544, + "community": 228, "norm_label": "put `/api/v1/insurance-pricing`" }, { @@ -68972,7 +69772,7 @@ "source_location": "L326", "_origin": "ast", "id": "api_insurance_request_body_326", - "community": 544, + "community": 228, "norm_label": "request body" }, { @@ -68982,7 +69782,7 @@ "source_location": "L343", "_origin": "ast", "id": "api_insurance_response_200_343", - "community": 544, + "community": 228, "norm_label": "response `200`" }, { @@ -68992,7 +69792,7 @@ "source_location": "L346", "_origin": "ast", "id": "api_insurance_\u062e\u0637\u0627\u0647\u0627_346", - "community": 544, + "community": 228, "norm_label": "\u062e\u0637\u0627\u0647\u0627" }, { @@ -69002,7 +69802,7 @@ "source_location": "L351", "_origin": "ast", "id": "api_insurance_tenantinsurance_\u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc_\u0628\u06cc\u0645\u0647_\u06cc_tenant_\u0641\u0627\u0632_\u06f1_\u0633\u06cc\u0633\u062a\u0645_\u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628", - "community": 606, + "community": 228, "norm_label": "tenantinsurance \u2014 \u0642\u0631\u0627\u0631\u062f\u0627\u062f\u0647\u0627\u06cc \u0628\u06cc\u0645\u0647\u200c\u06cc tenant (\u0641\u0627\u0632 \u06f1 \u0633\u06cc\u0633\u062a\u0645 \u0635\u0648\u0631\u062a\u062d\u0633\u0627\u0628)" }, { @@ -69012,7 +69812,7 @@ "source_location": "L355", "_origin": "ast", "id": "api_insurance_get_api_v1_billing_tenant_insurances", - "community": 606, + "community": 228, "norm_label": "get `/api/v1/billing/tenant-insurances`" }, { @@ -69022,7 +69822,7 @@ "source_location": "L383", "_origin": "ast", "id": "api_insurance_post_api_v1_billing_tenant_insurances", - "community": 606, + "community": 228, "norm_label": "post `/api/v1/billing/tenant-insurances`" }, { @@ -69032,7 +69832,7 @@ "source_location": "L397", "_origin": "ast", "id": "api_insurance_patch_api_v1_billing_tenant_insurances_uuid", - "community": 606, + "community": 228, "norm_label": "patch `/api/v1/billing/tenant-insurances/{uuid}`" }, { @@ -69042,7 +69842,7 @@ "source_location": "L400", "_origin": "ast", "id": "api_insurance_delete_api_v1_billing_tenant_insurances_uuid", - "community": 606, + "community": 228, "norm_label": "delete `/api/v1/billing/tenant-insurances/{uuid}`" }, { @@ -69052,7 +69852,7 @@ "source_location": "L411", "_origin": "ast", "id": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", - "community": 639, + "community": 228, "norm_label": "tenantservicecoverage \u2014 \u067e\u0648\u0634\u0634 \u062e\u062f\u0645\u062a \u062a\u062d\u062a \u06cc\u06a9 \u0642\u0631\u0627\u0631\u062f\u0627\u062f \u0628\u06cc\u0645\u0647 (\u0641\u0627\u0632 \u06f2)" }, { @@ -69062,7 +69862,7 @@ "source_location": "L415", "_origin": "ast", "id": "api_insurance_get_api_v1_billing_tenant_insurances_uuid_service_coverage", - "community": 639, + "community": 228, "norm_label": "get `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`" }, { @@ -69072,7 +69872,7 @@ "source_location": "L440", "_origin": "ast", "id": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage", - "community": 639, + "community": 228, "norm_label": "put `/api/v1/billing/tenant-insurances/{uuid}/service-coverage`" }, { @@ -69085,6 +69885,16 @@ "community": 228, "norm_label": "bulk import / export" }, + { + "label": "Sorting by id", + "file_type": "document", + "source_file": "docs/api/insurance.md", + "source_location": "L468", + "_origin": "ast", + "id": "api_insurance_sorting_by_id", + "community": 228, + "norm_label": "sorting by id" + }, { "label": "location.md", "file_type": "document", @@ -69132,7 +69942,7 @@ "source_location": "L26", "_origin": "ast", "id": "api_location_get_api_v1_cities", - "community": 29, + "community": 674, "norm_label": "get `/api/v1/cities`" }, { @@ -69142,7 +69952,7 @@ "source_location": "L32", "_origin": "ast", "id": "api_location_query_parameters", - "community": 29, + "community": 674, "norm_label": "query parameters" }, { @@ -69152,7 +69962,7 @@ "source_location": "L37", "_origin": "ast", "id": "api_location_response_200_37", - "community": 29, + "community": 674, "norm_label": "response `200`" }, { @@ -69202,7 +70012,7 @@ "source_location": "L80", "_origin": "ast", "id": "api_location_get_api_v1_admin_cities", - "community": 29, + "community": 673, "norm_label": "get `/api/v1/admin/cities`" }, { @@ -69212,7 +70022,7 @@ "source_location": "L86", "_origin": "ast", "id": "api_location_query_parameters_86", - "community": 29, + "community": 673, "norm_label": "query parameters" }, { @@ -69222,7 +70032,7 @@ "source_location": "L94", "_origin": "ast", "id": "api_location_response_200_94", - "community": 29, + "community": 673, "norm_label": "response `200`" }, { @@ -69272,7 +70082,7 @@ "source_location": "L132", "_origin": "ast", "id": "api_location_patch_api_v1_admin_province_id", - "community": 29, + "community": 658, "norm_label": "patch `/api/v1/admin/province/{id}`" }, { @@ -69282,7 +70092,7 @@ "source_location": "L138", "_origin": "ast", "id": "api_location_path_parameters", - "community": 29, + "community": 658, "norm_label": "path parameters" }, { @@ -69292,7 +70102,7 @@ "source_location": "L145", "_origin": "ast", "id": "api_location_response_200_145", - "community": 29, + "community": 658, "norm_label": "response `200`" }, { @@ -69302,7 +70112,7 @@ "source_location": "L148", "_origin": "ast", "id": "api_location_errors_148", - "community": 29, + "community": 658, "norm_label": "errors" }, { @@ -69332,7 +70142,7 @@ "source_location": "L170", "_origin": "ast", "id": "api_location_post_api_v1_admin_city", - "community": 29, + "community": 659, "norm_label": "post `/api/v1/admin/city`" }, { @@ -69342,7 +70152,7 @@ "source_location": "L176", "_origin": "ast", "id": "api_location_request_body_application_json_176", - "community": 29, + "community": 659, "norm_label": "request body (`application/json`)" }, { @@ -69352,7 +70162,7 @@ "source_location": "L193", "_origin": "ast", "id": "api_location_response_201_193", - "community": 29, + "community": 659, "norm_label": "response `201`" }, { @@ -69362,7 +70172,7 @@ "source_location": "L196", "_origin": "ast", "id": "api_location_errors_196", - "community": 29, + "community": 659, "norm_label": "errors" }, { @@ -69435,6 +70245,16 @@ "community": 29, "norm_label": "bulk import / export" }, + { + "label": "Sorting by id", + "file_type": "document", + "source_file": "docs/api/location.md", + "source_location": "L259", + "_origin": "ast", + "id": "api_location_sorting_by_id", + "community": 29, + "norm_label": "sorting by id" + }, { "label": "patient.md", "file_type": "document", @@ -69589,7 +70409,7 @@ "label": "GET `/api/v1/my/payments`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L34", + "source_location": "L40", "_origin": "ast", "id": "api_payment_get_api_v1_my_payments", "community": 45, @@ -69599,7 +70419,7 @@ "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L40", + "source_location": "L46", "_origin": "ast", "id": "api_payment_query_parameters", "community": 45, @@ -69609,7 +70429,7 @@ "label": "Response `200` (paginated)", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L47", + "source_location": "L53", "_origin": "ast", "id": "api_payment_response_200_paginated", "community": 45, @@ -69619,7 +70439,7 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L70", + "source_location": "L76", "_origin": "ast", "id": "api_payment_errors", "community": 45, @@ -69629,7 +70449,7 @@ "label": "POST `/api/v1/payment/appointment`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L77", + "source_location": "L83", "_origin": "ast", "id": "api_payment_post_api_v1_payment_appointment", "community": 45, @@ -69639,7 +70459,7 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L83", + "source_location": "L89", "_origin": "ast", "id": "api_payment_request_body_application_json", "community": 45, @@ -69649,9 +70469,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L98", + "source_location": "L104", "_origin": "ast", - "id": "api_payment_response_200_98", + "id": "api_payment_response_200_104", "community": 45, "norm_label": "response `200`" }, @@ -69659,9 +70479,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L116", + "source_location": "L122", "_origin": "ast", - "id": "api_payment_errors_116", + "id": "api_payment_errors_122", "community": 45, "norm_label": "errors" }, @@ -69669,7 +70489,7 @@ "label": "POST `/api/v1/payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L127", + "source_location": "L133", "_origin": "ast", "id": "api_payment_post_api_v1_payment_callback_gateway", "community": 45, @@ -69679,7 +70499,7 @@ "label": "GET `/api/v1/payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L128", + "source_location": "L134", "_origin": "ast", "id": "api_payment_get_api_v1_payment_callback_gateway", "community": 45, @@ -69689,7 +70509,7 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L134", + "source_location": "L146", "_origin": "ast", "id": "api_payment_path_parameters", "community": 45, @@ -69699,7 +70519,7 @@ "label": "Request (varies by gateway)", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L139", + "source_location": "L151", "_origin": "ast", "id": "api_payment_request_varies_by_gateway", "community": 45, @@ -69709,7 +70529,7 @@ "label": "Response", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L150", + "source_location": "L162", "_origin": "ast", "id": "api_payment_response", "community": 45, @@ -69719,7 +70539,7 @@ "label": "Notes", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L163", + "source_location": "L175", "_origin": "ast", "id": "api_payment_notes", "community": 45, @@ -69729,7 +70549,7 @@ "label": "POST `/api/v1/subscription-payment`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L170", + "source_location": "L182", "_origin": "ast", "id": "api_payment_post_api_v1_subscription_payment", "community": 45, @@ -69739,7 +70559,7 @@ "label": "Request Body", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L176", + "source_location": "L188", "_origin": "ast", "id": "api_payment_request_body", "community": 45, @@ -69749,9 +70569,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L191", + "source_location": "L203", "_origin": "ast", - "id": "api_payment_response_200_191", + "id": "api_payment_response_200_203", "community": 45, "norm_label": "response `200`" }, @@ -69759,9 +70579,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L203", + "source_location": "L215", "_origin": "ast", - "id": "api_payment_errors_203", + "id": "api_payment_errors_215", "community": 45, "norm_label": "errors" }, @@ -69769,7 +70589,7 @@ "label": "POST/GET `/api/v1/subscription-payment/callback/{gateway}`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L212", + "source_location": "L224", "_origin": "ast", "id": "api_payment_post_get_api_v1_subscription_payment_callback_gateway", "community": 45, @@ -69779,7 +70599,7 @@ "label": "GET `/api/v1/payment/{uuid}`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L220", + "source_location": "L232", "_origin": "ast", "id": "api_payment_get_api_v1_payment_uuid", "community": 45, @@ -69789,9 +70609,9 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L226", + "source_location": "L238", "_origin": "ast", - "id": "api_payment_path_parameters_226", + "id": "api_payment_path_parameters_238", "community": 45, "norm_label": "path parameters" }, @@ -69799,9 +70619,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L231", + "source_location": "L243", "_origin": "ast", - "id": "api_payment_response_200_231", + "id": "api_payment_response_200_243", "community": 45, "norm_label": "response `200`" }, @@ -69809,9 +70629,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L260", + "source_location": "L272", "_origin": "ast", - "id": "api_payment_errors_260", + "id": "api_payment_errors_272", "community": 45, "norm_label": "errors" }, @@ -69819,7 +70639,7 @@ "label": "Sandbox (test) mode & origin allowlist", "file_type": "document", "source_file": "docs/api/payment.md", - "source_location": "L269", + "source_location": "L281", "_origin": "ast", "id": "api_payment_sandbox_test_mode_origin_allowlist", "community": 45, @@ -70932,7 +71752,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_secretary", - "community": 46, + "community": 274, "norm_label": "secretary.md" }, { @@ -70989,7 +71809,7 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L127", + "source_location": "L129", "_origin": "ast", "id": "api_secretary_errors", "community": 46, @@ -70999,7 +71819,7 @@ "label": "GET `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L139", + "source_location": "L141", "_origin": "ast", "id": "api_secretary_get_api_v1_secretary_uuid", "community": 46, @@ -71009,7 +71829,7 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L145", + "source_location": "L147", "_origin": "ast", "id": "api_secretary_path_parameters", "community": 46, @@ -71019,7 +71839,7 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L151", + "source_location": "L153", "_origin": "ast", "id": "api_secretary_response_200", "community": 46, @@ -71029,9 +71849,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L167", + "source_location": "L169", "_origin": "ast", - "id": "api_secretary_errors_167", + "id": "api_secretary_errors_169", "community": 46, "norm_label": "errors" }, @@ -71039,7 +71859,7 @@ "label": "PATCH `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L177", + "source_location": "L179", "_origin": "ast", "id": "api_secretary_patch_api_v1_secretary_uuid", "community": 46, @@ -71049,9 +71869,9 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L183", + "source_location": "L185", "_origin": "ast", - "id": "api_secretary_request_body_application_json_183", + "id": "api_secretary_request_body_application_json_185", "community": 46, "norm_label": "request body (`application/json`)" }, @@ -71059,9 +71879,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L207", + "source_location": "L209", "_origin": "ast", - "id": "api_secretary_response_200_207", + "id": "api_secretary_response_200_209", "community": 46, "norm_label": "response `200`" }, @@ -71069,9 +71889,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L211", + "source_location": "L213", "_origin": "ast", - "id": "api_secretary_errors_211", + "id": "api_secretary_errors_213", "community": 46, "norm_label": "errors" }, @@ -71079,7 +71899,7 @@ "label": "DELETE `/api/v1/secretary/{uuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L221", + "source_location": "L223", "_origin": "ast", "id": "api_secretary_delete_api_v1_secretary_uuid", "community": 46, @@ -71089,9 +71909,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L227", + "source_location": "L229", "_origin": "ast", - "id": "api_secretary_response_200_227", + "id": "api_secretary_response_200_229", "community": 46, "norm_label": "response `200`" }, @@ -71099,9 +71919,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L233", + "source_location": "L235", "_origin": "ast", - "id": "api_secretary_errors_233", + "id": "api_secretary_errors_235", "community": 46, "norm_label": "errors" }, @@ -71109,7 +71929,7 @@ "label": "GET `/api/v1/secretaries/{doctorUuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L243", + "source_location": "L245", "_origin": "ast", "id": "api_secretary_get_api_v1_secretaries_doctoruuid", "community": 46, @@ -71119,9 +71939,9 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L249", + "source_location": "L251", "_origin": "ast", - "id": "api_secretary_path_parameters_249", + "id": "api_secretary_path_parameters_251", "community": 46, "norm_label": "path parameters" }, @@ -71129,9 +71949,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L255", + "source_location": "L257", "_origin": "ast", - "id": "api_secretary_response_200_255", + "id": "api_secretary_response_200_257", "community": 46, "norm_label": "response `200`" }, @@ -71139,9 +71959,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L275", + "source_location": "L277", "_origin": "ast", - "id": "api_secretary_errors_275", + "id": "api_secretary_errors_277", "community": 46, "norm_label": "errors" }, @@ -71149,7 +71969,7 @@ "label": "GET `/api/v1/secretaries/clinic/{clinicUuid}`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L285", + "source_location": "L287", "_origin": "ast", "id": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", "community": 46, @@ -71159,9 +71979,9 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L291", + "source_location": "L293", "_origin": "ast", - "id": "api_secretary_path_parameters_291", + "id": "api_secretary_path_parameters_293", "community": 46, "norm_label": "path parameters" }, @@ -71169,9 +71989,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L297", + "source_location": "L299", "_origin": "ast", - "id": "api_secretary_response_200_297", + "id": "api_secretary_response_200_299", "community": 46, "norm_label": "response `200`" }, @@ -71179,7 +71999,7 @@ "label": "Notes", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L317", + "source_location": "L319", "_origin": "ast", "id": "api_secretary_notes", "community": 46, @@ -71189,9 +72009,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L323", + "source_location": "L325", "_origin": "ast", - "id": "api_secretary_errors_323", + "id": "api_secretary_errors_325", "community": 46, "norm_label": "errors" }, @@ -71199,7 +72019,7 @@ "label": "\u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u067e\u0646\u0644 \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "file_type": "document", "source_file": "docs/api/secretary.md", - "source_location": "L333", + "source_location": "L335", "_origin": "ast", "id": "api_secretary_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u067e\u0646\u0644_\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc", "community": 46, @@ -71552,14 +72372,24 @@ "source_location": "L1", "_origin": "ast", "id": "api_sms_sms_api", - "community": 392, + "community": 597, "norm_label": "sms api" }, + { + "label": "Configuration", + "file_type": "document", + "source_file": "docs/api/sms.md", + "source_location": "L7", + "_origin": "ast", + "id": "api_sms_configuration", + "community": 597, + "norm_label": "configuration" + }, { "label": "POST `/api/v1/sms/send`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L9", + "source_location": "L17", "_origin": "ast", "id": "api_sms_post_api_v1_sms_send", "community": 555, @@ -71569,7 +72399,7 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L15", + "source_location": "L23", "_origin": "ast", "id": "api_sms_request_body_application_json", "community": 555, @@ -71579,7 +72409,7 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L30", + "source_location": "L38", "_origin": "ast", "id": "api_sms_response_200", "community": 555, @@ -71589,7 +72419,7 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L38", + "source_location": "L46", "_origin": "ast", "id": "api_sms_errors", "community": 555, @@ -71599,7 +72429,7 @@ "label": "POST `/api/v1/sms/send-template`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L47", + "source_location": "L55", "_origin": "ast", "id": "api_sms_post_api_v1_sms_send_template", "community": 559, @@ -71609,9 +72439,9 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L53", + "source_location": "L61", "_origin": "ast", - "id": "api_sms_request_body_application_json_53", + "id": "api_sms_request_body_application_json_61", "community": 559, "norm_label": "request body (`application/json`)" }, @@ -71619,9 +72449,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L73", + "source_location": "L81", "_origin": "ast", - "id": "api_sms_response_200_73", + "id": "api_sms_response_200_81", "community": 559, "norm_label": "response `200`" }, @@ -71629,9 +72459,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L81", + "source_location": "L89", "_origin": "ast", - "id": "api_sms_errors_81", + "id": "api_sms_errors_89", "community": 559, "norm_label": "errors" }, @@ -71639,7 +72469,7 @@ "label": "POST `/api/v1/sms/template`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L91", + "source_location": "L99", "_origin": "ast", "id": "api_sms_post_api_v1_sms_template", "community": 556, @@ -71649,9 +72479,9 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L97", + "source_location": "L105", "_origin": "ast", - "id": "api_sms_request_body_application_json_97", + "id": "api_sms_request_body_application_json_105", "community": 556, "norm_label": "request body (`application/json`)" }, @@ -71659,7 +72489,7 @@ "label": "Response `201`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L112", + "source_location": "L120", "_origin": "ast", "id": "api_sms_response_201", "community": 556, @@ -71669,9 +72499,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L135", + "source_location": "L143", "_origin": "ast", - "id": "api_sms_errors_135", + "id": "api_sms_errors_143", "community": 556, "norm_label": "errors" }, @@ -71679,37 +72509,37 @@ "label": "GET `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L144", + "source_location": "L152", "_origin": "ast", "id": "api_sms_get_api_v1_sms_template_uuid", - "community": 598, + "community": 597, "norm_label": "get `/api/v1/sms/template/{uuid}`" }, { "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L150", + "source_location": "L158", "_origin": "ast", - "id": "api_sms_response_200_150", - "community": 598, + "id": "api_sms_response_200_158", + "community": 597, "norm_label": "response `200`" }, { "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L153", + "source_location": "L161", "_origin": "ast", - "id": "api_sms_errors_153", - "community": 598, + "id": "api_sms_errors_161", + "community": 597, "norm_label": "errors" }, { "label": "PATCH `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L161", + "source_location": "L169", "_origin": "ast", "id": "api_sms_patch_api_v1_sms_template_uuid", "community": 557, @@ -71719,9 +72549,9 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L167", + "source_location": "L175", "_origin": "ast", - "id": "api_sms_request_body_application_json_167", + "id": "api_sms_request_body_application_json_175", "community": 557, "norm_label": "request body (`application/json`)" }, @@ -71729,9 +72559,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L178", + "source_location": "L186", "_origin": "ast", - "id": "api_sms_response_200_178", + "id": "api_sms_response_200_186", "community": 557, "norm_label": "response `200`" }, @@ -71739,9 +72569,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L181", + "source_location": "L189", "_origin": "ast", - "id": "api_sms_errors_181", + "id": "api_sms_errors_189", "community": 557, "norm_label": "errors" }, @@ -71749,7 +72579,7 @@ "label": "POST `/api/v1/sms/template/{uuid}/submit`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L191", + "source_location": "L199", "_origin": "ast", "id": "api_sms_post_api_v1_sms_template_uuid_submit", "community": 599, @@ -71759,9 +72589,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L197", + "source_location": "L205", "_origin": "ast", - "id": "api_sms_response_200_197", + "id": "api_sms_response_200_205", "community": 599, "norm_label": "response `200`" }, @@ -71769,9 +72599,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L200", + "source_location": "L208", "_origin": "ast", - "id": "api_sms_errors_200", + "id": "api_sms_errors_208", "community": 599, "norm_label": "errors" }, @@ -71779,7 +72609,7 @@ "label": "DELETE `/api/v1/sms/template/{uuid}`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L210", + "source_location": "L218", "_origin": "ast", "id": "api_sms_delete_api_v1_sms_template_uuid", "community": 597, @@ -71789,9 +72619,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L216", + "source_location": "L224", "_origin": "ast", - "id": "api_sms_response_200_216", + "id": "api_sms_response_200_224", "community": 597, "norm_label": "response `200`" }, @@ -71799,9 +72629,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L221", + "source_location": "L229", "_origin": "ast", - "id": "api_sms_errors_221", + "id": "api_sms_errors_229", "community": 597, "norm_label": "errors" }, @@ -71809,27 +72639,27 @@ "label": "GET `/api/v1/admin/sms/templates`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L230", + "source_location": "L238", "_origin": "ast", "id": "api_sms_get_api_v1_admin_sms_templates", - "community": 392, + "community": 597, "norm_label": "get `/api/v1/admin/sms/templates`" }, { "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L236", + "source_location": "L244", "_origin": "ast", - "id": "api_sms_response_200_236", - "community": 392, + "id": "api_sms_response_200_244", + "community": 597, "norm_label": "response `200`" }, { "label": "POST `/api/v1/admin/sms/template/{uuid}/approve`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L253", + "source_location": "L261", "_origin": "ast", "id": "api_sms_post_api_v1_admin_sms_template_uuid_approve", "community": 600, @@ -71839,9 +72669,9 @@ "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L259", + "source_location": "L267", "_origin": "ast", - "id": "api_sms_request_body_application_json_259", + "id": "api_sms_request_body_application_json_267", "community": 600, "norm_label": "request body (`application/json`)" }, @@ -71849,9 +72679,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L272", + "source_location": "L280", "_origin": "ast", - "id": "api_sms_response_200_272", + "id": "api_sms_response_200_280", "community": 600, "norm_label": "response `200`" }, @@ -71859,7 +72689,7 @@ "label": "POST `/api/v1/admin/sms/template/{uuid}/reject`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L277", + "source_location": "L285", "_origin": "ast", "id": "api_sms_post_api_v1_admin_sms_template_uuid_reject", "community": 558, @@ -71869,7 +72699,7 @@ "label": "Request Body", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L283", + "source_location": "L291", "_origin": "ast", "id": "api_sms_request_body", "community": 558, @@ -71879,9 +72709,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L294", + "source_location": "L302", "_origin": "ast", - "id": "api_sms_response_200_294", + "id": "api_sms_response_200_302", "community": 558, "norm_label": "response `200`" }, @@ -71889,9 +72719,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L297", + "source_location": "L305", "_origin": "ast", - "id": "api_sms_errors_297", + "id": "api_sms_errors_305", "community": 558, "norm_label": "errors" }, @@ -71899,7 +72729,7 @@ "label": "SMS Wallet", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L304", + "source_location": "L312", "_origin": "ast", "id": "api_sms_sms_wallet", "community": 560, @@ -71909,7 +72739,7 @@ "label": "GET /api/v1/sms/wallet/balance", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L308", + "source_location": "L316", "_origin": "ast", "id": "api_sms_get_api_v1_sms_wallet_balance", "community": 560, @@ -71919,7 +72749,7 @@ "label": "POST /api/v1/sms/wallet/charge", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L323", + "source_location": "L331", "_origin": "ast", "id": "api_sms_post_api_v1_sms_wallet_charge", "community": 560, @@ -71929,7 +72759,7 @@ "label": "GET /api/v1/sms/wallet/logs", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L351", + "source_location": "L359", "_origin": "ast", "id": "api_sms_get_api_v1_sms_wallet_logs", "community": 560, @@ -71939,7 +72769,7 @@ "label": "SMS Settings", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L375", + "source_location": "L383", "_origin": "ast", "id": "api_sms_sms_settings", "community": 392, @@ -71949,7 +72779,7 @@ "label": "GET /api/v1/sms/settings", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L377", + "source_location": "L385", "_origin": "ast", "id": "api_sms_get_api_v1_sms_settings", "community": 392, @@ -71959,7 +72789,7 @@ "label": "PATCH /api/v1/sms/settings", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L401", + "source_location": "L409", "_origin": "ast", "id": "api_sms_patch_api_v1_sms_settings", "community": 392, @@ -71969,7 +72799,7 @@ "label": "Admin Endpoints", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L420", + "source_location": "L428", "_origin": "ast", "id": "api_sms_admin_endpoints", "community": 488, @@ -71979,7 +72809,7 @@ "label": "GET /api/v1/admin/sms/settings/review", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L422", + "source_location": "L430", "_origin": "ast", "id": "api_sms_get_api_v1_admin_sms_settings_review", "community": 488, @@ -71989,7 +72819,7 @@ "label": "POST /api/v1/admin/sms/settings/{id}/approve", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L453", + "source_location": "L461", "_origin": "ast", "id": "api_sms_post_api_v1_admin_sms_settings_id_approve", "community": 488, @@ -71999,7 +72829,7 @@ "label": "POST /api/v1/admin/sms/settings/{id}/reject", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L457", + "source_location": "L465", "_origin": "ast", "id": "api_sms_post_api_v1_admin_sms_settings_id_reject", "community": 488, @@ -72009,7 +72839,7 @@ "label": "GET /api/v1/admin/sms/wallet-report", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L467", + "source_location": "L475", "_origin": "ast", "id": "api_sms_get_api_v1_admin_sms_wallet_report", "community": 488, @@ -72019,7 +72849,7 @@ "label": "\u0645\u062a\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u067e\u0630\u06cc\u0631 \u067e\u06cc\u0627\u0645\u06a9\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645\u06cc", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L473", + "source_location": "L481", "_origin": "ast", "id": "api_sms_\u0645\u062a\u0646_\u0648\u06cc\u0631\u0627\u06cc\u0634_\u067e\u0630\u06cc\u0631_\u067e\u06cc\u0627\u0645\u06a9_\u0647\u0627\u06cc_\u0633\u06cc\u0633\u062a\u0645\u06cc", "community": 334, @@ -72029,7 +72859,7 @@ "label": "GET `/api/v1/admin/sms/messages`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L481", + "source_location": "L491", "_origin": "ast", "id": "api_sms_get_api_v1_admin_sms_messages", "community": 334, @@ -72039,9 +72869,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L487", + "source_location": "L497", "_origin": "ast", - "id": "api_sms_response_200_487", + "id": "api_sms_response_200_497", "community": 334, "norm_label": "response `200`" }, @@ -72049,7 +72879,7 @@ "label": "PATCH `/api/v1/admin/sms/messages/{tag}`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L505", + "source_location": "L515", "_origin": "ast", "id": "api_sms_patch_api_v1_admin_sms_messages_tag", "community": 334, @@ -72059,7 +72889,7 @@ "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L511", + "source_location": "L521", "_origin": "ast", "id": "api_sms_path_parameters", "community": 334, @@ -72069,9 +72899,9 @@ "label": "Request Body", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L516", + "source_location": "L526", "_origin": "ast", - "id": "api_sms_request_body_516", + "id": "api_sms_request_body_526", "community": 334, "norm_label": "request body" }, @@ -72079,9 +72909,9 @@ "label": "Response `200`", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L524", + "source_location": "L534", "_origin": "ast", - "id": "api_sms_response_200_524", + "id": "api_sms_response_200_534", "community": 334, "norm_label": "response `200`" }, @@ -72089,9 +72919,9 @@ "label": "Errors", "file_type": "document", "source_file": "docs/api/sms.md", - "source_location": "L529", + "source_location": "L539", "_origin": "ast", - "id": "api_sms_errors_529", + "id": "api_sms_errors_539", "community": 334, "norm_label": "errors" }, @@ -72102,7 +72932,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_specialty", - "community": 274, + "community": 62, "norm_label": "specialty.md" }, { @@ -72345,6 +73175,16 @@ "community": 62, "norm_label": "bulk import / export" }, + { + "label": "Sorting by id", + "file_type": "document", + "source_file": "docs/api/specialty.md", + "source_location": "L205", + "_origin": "ast", + "id": "api_specialty_sorting_by_id", + "community": 62, + "norm_label": "sorting by id" + }, { "label": "staff.md", "file_type": "document", @@ -72572,7 +73412,7 @@ "source_location": "L1", "_origin": "ast", "id": "api_tag", - "community": 274, + "community": 102, "norm_label": "tag.md" }, { @@ -72765,6 +73605,16 @@ "community": 102, "norm_label": "bulk import / export" }, + { + "label": "Sorting by id", + "file_type": "document", + "source_file": "docs/api/tag.md", + "source_location": "L142", + "_origin": "ast", + "id": "api_tag_sorting_by_id", + "community": 102, + "norm_label": "sorting by id" + }, { "label": "user-profile.md", "file_type": "document", @@ -76575,6 +77425,196 @@ "community": 311, "norm_label": "\u062a\u0648\u0635\u06cc\u0647\u200c\u0647\u0627" }, + { + "label": "full-system-audit-report.md", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L1", + "_origin": "ast", + "id": "qa_full_system_audit_report", + "community": 440, + "norm_label": "full-system-audit-report.md" + }, + { + "label": "\u06af\u0632\u0627\u0631\u0634 \u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 QA \u2014 ClinicPro (Backend Symfony + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 React)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L1", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "community": 440, + "norm_label": "\u06af\u0632\u0627\u0631\u0634 \u0645\u0645\u06cc\u0632\u06cc \u06a9\u0627\u0645\u0644 qa \u2014 clinicpro (backend symfony + \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 react)" + }, + { + "label": "\u062e\u0644\u0627\u0635\u0647\u0654 \u0627\u062c\u0631\u0627\u06cc\u06cc", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L6", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc", + "community": 440, + "norm_label": "\u062e\u0644\u0627\u0635\u0647 \u0627\u062c\u0631\u0627\u06cc\u06cc" + }, + { + "label": "\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L23", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "community": 440, + "norm_label": "\u06cc\u0627\u0641\u062a\u0647\u200c\u0647\u0627" + }, + { + "label": "[F1] phpstan: \u0645\u0642\u0627\u06cc\u0633\u0647\u0654 \u0647\u0645\u06cc\u0634\u0647\u200c\u062f\u0631\u0633\u062a \u062f\u0631 \u0645\u062d\u0627\u0633\u0628\u0647\u0654 estimated SMS \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L25", + "_origin": "ast", + "id": "qa_full_system_audit_report_f1_phpstan_\u0645\u0642\u0627\u06cc\u0633\u0647_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631\u0633\u062a_\u062f\u0631_\u0645\u062d\u0627\u0633\u0628\u0647_estimated_sms_\u0631\u0641\u0639_\u0634\u062f", + "community": 440, + "norm_label": "[f1] phpstan: \u0645\u0642\u0627\u06cc\u0633\u0647 \u0647\u0645\u06cc\u0634\u0647\u200c\u062f\u0631\u0633\u062a \u062f\u0631 \u0645\u062d\u0627\u0633\u0628\u0647 estimated sms \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f" + }, + { + "label": "[F2] \u062a\u0633\u062a\u200c\u0647\u0627\u06cc PHPUnit \u0628\u0647 API \u062e\u0627\u0631\u062c\u06cc Kavenegar \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u0627\u0642\u0639\u06cc \u0645\u06cc\u200c\u0632\u0646\u0646\u062f", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L32", + "_origin": "ast", + "id": "qa_full_system_audit_report_f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_phpunit_\u0628\u0647_api_\u062e\u0627\u0631\u062c\u06cc_kavenegar_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0645\u06cc_\u0632\u0646\u0646\u062f", + "community": 440, + "norm_label": "[f2] \u062a\u0633\u062a\u200c\u0647\u0627\u06cc phpunit \u0628\u0647 api \u062e\u0627\u0631\u062c\u06cc kavenegar \u062f\u0631\u062e\u0648\u0627\u0633\u062a \u0648\u0627\u0642\u0639\u06cc \u0645\u06cc\u200c\u0632\u0646\u0646\u062f" + }, + { + "label": "[F3] \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a seed \u0646\u0634\u062f\u0647 \u2014 \u0641\u0642\u0637 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062f\u0645\u06cc\u0646 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L39", + "_origin": "ast", + "id": "qa_full_system_audit_report_f3_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a_seed_\u0646\u0634\u062f\u0647_\u0641\u0642\u0637_\u06a9\u0627\u0631\u0628\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0648\u062c\u0648\u062f_\u062f\u0627\u0631\u062f", + "community": 440, + "norm_label": "[f3] \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a seed \u0646\u0634\u062f\u0647 \u2014 \u0641\u0642\u0637 \u06a9\u0627\u0631\u0628\u0631 \u0627\u062f\u0645\u06cc\u0646 \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f" + }, + { + "label": "[F4] \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a seeder `create_test_users.php` \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L59", + "_origin": "ast", + "id": "qa_full_system_audit_report_f4_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_seeder_create_test_users_php_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0631\u062f", + "community": 440, + "norm_label": "[f4] \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a seeder `create_test_users.php` \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f" + }, + { + "label": "[F5] \u0627\u062f\u0645\u06cc\u0646 \u0628\u0627 JWT \u0645\u0639\u062a\u0628\u0631 \u0628\u0647 `/api/doc` (Swagger UI) \u062f\u0633\u062a\u0631\u0633\u06cc \u0646\u062f\u0627\u0631\u062f (401)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L65", + "_origin": "ast", + "id": "qa_full_system_audit_report_f5_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0627_jwt_\u0645\u0639\u062a\u0628\u0631_\u0628\u0647_api_doc_swagger_ui_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u062f\u0627\u0631\u062f_401", + "community": 440, + "norm_label": "[f5] \u0627\u062f\u0645\u06cc\u0646 \u0628\u0627 jwt \u0645\u0639\u062a\u0628\u0631 \u0628\u0647 `/api/doc` (swagger ui) \u062f\u0633\u062a\u0631\u0633\u06cc \u0646\u062f\u0627\u0631\u062f (401)" + }, + { + "label": "[F6] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u06a9\u062f\u0647\u0627\u06cc \u062e\u0637\u0627 \u0628\u06cc\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L72", + "_origin": "ast", + "id": "qa_full_system_audit_report_f6_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627_\u0628\u06cc\u0646_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", + "community": 440, + "norm_label": "[f6] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u06a9\u062f\u0647\u0627\u06cc \u062e\u0637\u0627 \u0628\u06cc\u0646 \u062f\u0627\u0645\u0646\u0647\u200c\u0647\u0627" + }, + { + "label": "[F7] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0646\u0627\u0645 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u06cc\u0646 \u0633\u0647 endpoint", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L86", + "_origin": "ast", + "id": "qa_full_system_audit_report_f7_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u06cc\u0646_\u0633\u0647_endpoint", + "community": 440, + "norm_label": "[f7] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0646\u0627\u0645 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u0628\u06cc\u0646 \u0633\u0647 endpoint" + }, + { + "label": "[F8] \u0646\u0628\u0648\u062f Rate-Limiting \u0631\u0648\u06cc `POST /api/v1/user/login` (Brute-force)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L97", + "_origin": "ast", + "id": "qa_full_system_audit_report_f8_\u0646\u0628\u0648\u062f_rate_limiting_\u0631\u0648\u06cc_post_api_v1_user_login_brute_force", + "community": 440, + "norm_label": "[f8] \u0646\u0628\u0648\u062f rate-limiting \u0631\u0648\u06cc `post /api/v1/user/login` (brute-force)" + }, + { + "label": "[F9] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u062f\u0631 `public_endpoints`: `cities`/`provinces` \u0646\u06cc\u0627\u0632 \u0628\u0647 auth\u060c `specialties` \u0639\u0645\u0648\u0645\u06cc", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L112", + "_origin": "ast", + "id": "qa_full_system_audit_report_f9_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u062f\u0631_public_endpoints_cities_provinces_\u0646\u06cc\u0627\u0632_\u0628\u0647_auth_specialties_\u0639\u0645\u0648\u0645\u06cc", + "community": 440, + "norm_label": "[f9] \u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u062f\u0631 `public_endpoints`: `cities`/`provinces` \u0646\u06cc\u0627\u0632 \u0628\u0647 auth\u060c `specialties` \u0639\u0645\u0648\u0645\u06cc" + }, + { + "label": "[F10] \u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u06a9\u0647\u0646\u0647 \u062f\u0631 `CLAUDE.md`: endpoint `categorys/{bundle}` \u0645\u0646\u062a\u0642\u0644 \u0634\u062f\u0647", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L125", + "_origin": "ast", + "id": "qa_full_system_audit_report_f10_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u06a9\u0647\u0646\u0647_\u062f\u0631_claude_md_endpoint_categorys_bundle_\u0645\u0646\u062a\u0642\u0644_\u0634\u062f\u0647", + "community": 440, + "norm_label": "[f10] \u0631\u0627\u0647\u0646\u0645\u0627\u06cc \u06a9\u0647\u0646\u0647 \u062f\u0631 `claude.md`: endpoint `categorys/{bundle}` \u0645\u0646\u062a\u0642\u0644 \u0634\u062f\u0647" + }, + { + "label": "[F11] \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u062f\u06a9\u062a\u0631 `GET /api/v1/dashboard/doctor` \u0647\u0645\u06cc\u0634\u0647 500 (\u0641\u06cc\u0644\u062f \u0646\u0627\u0645\u0648\u062c\u0648\u062f \u062f\u0631 DQL) \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L130", + "_origin": "ast", + "id": "qa_full_system_audit_report_f11_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631_get_api_v1_dashboard_doctor_\u0647\u0645\u06cc\u0634\u0647_500_\u0641\u06cc\u0644\u062f_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_dql_\u0631\u0641\u0639_\u0634\u062f", + "community": 440, + "norm_label": "[f11] \u062f\u0627\u0634\u0628\u0648\u0631\u062f \u062f\u06a9\u062a\u0631 `get /api/v1/dashboard/doctor` \u0647\u0645\u06cc\u0634\u0647 500 (\u0641\u06cc\u0644\u062f \u0646\u0627\u0645\u0648\u062c\u0648\u062f \u062f\u0631 dql) \u2014 \u2705 \u0631\u0641\u0639 \u0634\u062f" + }, + { + "label": "\u0646\u062a\u0627\u06cc\u062c \u0645\u062b\u0628\u062a \u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u0646\u062f)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L151", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u0646\u062a\u0627\u06cc\u062c_\u0645\u062b\u0628\u062a_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", + "community": 440, + "norm_label": "\u0646\u062a\u0627\u06cc\u062c \u0645\u062b\u0628\u062a \u062a\u0627\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u0646\u062f)" + }, + { + "label": "\u062d\u0644\u200c\u0634\u062f\u0647 \u062f\u0631 \u062f\u0648\u0631 \u062f\u0648\u0645 (\u0642\u0628\u0644\u0627\u064b \u0645\u0633\u062f\u0648\u062f \u0628\u0648\u062f\u0646\u062f)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L166", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u062d\u0644_\u0634\u062f\u0647_\u062f\u0631_\u062f\u0648\u0631_\u062f\u0648\u0645_\u0642\u0628\u0644\u0627_\u0645\u0633\u062f\u0648\u062f_\u0628\u0648\u062f\u0646\u062f", + "community": 440, + "norm_label": "\u062d\u0644\u200c\u0634\u062f\u0647 \u062f\u0631 \u062f\u0648\u0631 \u062f\u0648\u0645 (\u0642\u0628\u0644\u0627 \u0645\u0633\u062f\u0648\u062f \u0628\u0648\u062f\u0646\u062f)" + }, + { + "label": "\u0647\u0646\u0648\u0632 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0631\u0631\u0633\u06cc (\u0646\u0647 \u062a\u0623\u06cc\u06cc\u062f \u0633\u0644\u0627\u0645\u062a \u2014 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u062f\u0647/\u0645\u062d\u06cc\u0637)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L175", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u0647\u0646\u0648\u0632_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0646\u0647_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0644\u0627\u0645\u062a_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0645\u062d\u06cc\u0637", + "community": 440, + "norm_label": "\u0647\u0646\u0648\u0632 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0631\u0631\u0633\u06cc (\u0646\u0647 \u062a\u0627\u06cc\u06cc\u062f \u0633\u0644\u0627\u0645\u062a \u2014 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a \u062f\u0627\u062f\u0647/\u0645\u062d\u06cc\u0637)" + }, + { + "label": "\u062f\u0633\u062a\u0648\u0631\u0627\u062a \u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f (\u062e\u0644\u0627\u0635\u0647)", + "file_type": "document", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L191", + "_origin": "ast", + "id": "qa_full_system_audit_report_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_\u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f_\u062e\u0644\u0627\u0635\u0647", + "community": 440, + "norm_label": "\u062f\u0633\u062a\u0648\u0631\u0627\u062a \u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f (\u062e\u0644\u0627\u0635\u0647)" + }, { "label": "security-audit.md", "file_type": "document", @@ -88456,6 +89496,26 @@ "source": "hooks_hooks_test", "target": "test_utils_renderhookwithclient" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "assets/admin/hooks/usePaymentConfig.ts", + "source_location": "L10", + "weight": 1.0, + "source": "hooks_usepaymentconfig", + "target": "hooks_usepaymentconfig_paymentconfig", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "assets/admin/hooks/usePaymentConfig.ts", + "source_location": "L5", + "weight": 1.0, + "source": "hooks_usepaymentconfig", + "target": "hooks_usepaymentconfig_paymentgatewayinfo", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -98220,16 +99280,6 @@ "source": "pages_staffpage", "target": "types_index_clinicstaff" }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "assets/admin/pages/SubscriptionPage.tsx", - "source_location": "L45", - "weight": 1.0, - "confidence_score": 1.0, - "source": "pages_subscriptionpage", - "target": "pages_subscriptionpage_gateway_labels" - }, { "relation": "contains", "confidence": "EXTRACTED", @@ -109171,9 +110221,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L7", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "inherits", @@ -109181,9 +110231,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L23", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand_seedcategoriescommand", - "target": "command", - "confidence_score": 1.0 + "target": "command" }, { "relation": "references_constant", @@ -121968,9 +123018,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L22", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand", - "target": "command_seedcategoriescommand_seedcategoriescommand", - "confidence_score": 1.0 + "target": "command_seedcategoriescommand_seedcategoriescommand" }, { "relation": "imports", @@ -121979,9 +123029,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L8", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand", - "target": "src_category_command_seedcategoriescommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_category_command_seedcategoriescommand_php_inputinterface" }, { "relation": "imports", @@ -121990,9 +123040,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L9", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand", - "target": "src_category_command_seedcategoriescommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_category_command_seedcategoriescommand_php_outputinterface" }, { "relation": "method", @@ -122000,9 +123050,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand_seedcategoriescommand", - "target": "command_seedcategoriescommand_seedcategoriescommand_construct", - "confidence_score": 1.0 + "target": "command_seedcategoriescommand_seedcategoriescommand_construct" }, { "relation": "method", @@ -122010,9 +123060,9 @@ "source_file": "src/Category/Command/SeedCategoriesCommand.php", "source_location": "L35", "weight": 1.0, + "confidence_score": 1.0, "source": "command_seedcategoriescommand_seedcategoriescommand", - "target": "command_seedcategoriescommand_seedcategoriescommand_execute", - "confidence_score": 1.0 + "target": "command_seedcategoriescommand_seedcategoriescommand_execute" }, { "relation": "references", @@ -122021,9 +123071,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_seedcategoriescommand_seedcategoriescommand_execute", - "target": "src_category_command_seedcategoriescommand_php_inputinterface", - "confidence_score": 1.0 + "target": "src_category_command_seedcategoriescommand_php_inputinterface" }, { "relation": "references", @@ -122032,9 +123082,9 @@ "source_location": "L35", "weight": 1.0, "context": "parameter_type", + "confidence_score": 1.0, "source": "command_seedcategoriescommand_seedcategoriescommand_execute", - "target": "src_category_command_seedcategoriescommand_php_outputinterface", - "confidence_score": 1.0 + "target": "src_category_command_seedcategoriescommand_php_outputinterface" }, { "relation": "imports", @@ -122233,9 +123283,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L5", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter", - "target": "connection", - "confidence_score": 1.0 + "target": "connection" }, { "relation": "contains", @@ -122243,9 +123293,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L16", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter", - "target": "service_categoryimporter_categoryimporter", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter" }, { "relation": "method", @@ -122253,9 +123303,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L28", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_construct", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_construct" }, { "relation": "method", @@ -122263,9 +123313,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L232", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_existingids", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_existingids" }, { "relation": "method", @@ -122273,9 +123323,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L38", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_exportall", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_exportall" }, { "relation": "method", @@ -122283,9 +123333,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L241", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_ispositiveint", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_ispositiveint" }, { "relation": "method", @@ -122293,9 +123343,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L32", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_isvalidbundle", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_isvalidbundle" }, { "relation": "method", @@ -122303,9 +123353,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L246", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_normint", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_normint" }, { "relation": "method", @@ -122313,9 +123363,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L253", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_nullableid", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_nullableid" }, { "relation": "method", @@ -122323,9 +123373,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L263", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_optstr", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_optstr" }, { "relation": "method", @@ -122333,9 +123383,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L169", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_replace", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_replace" }, { "relation": "method", @@ -122343,9 +123393,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L58", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_validate", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_validate" }, { "relation": "method", @@ -122353,9 +123403,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L188", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter", - "target": "service_categoryimporter_categoryimporter_validatereferences", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_validatereferences" }, { "relation": "calls", @@ -122364,9 +123414,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L163", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter_validate", - "target": "service_categoryimporter_categoryimporter_validatereferences", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_validatereferences" }, { "relation": "calls", @@ -122375,9 +123425,9 @@ "source_file": "src/Category/Service/CategoryImporter.php", "source_location": "L205", "weight": 1.0, + "confidence_score": 1.0, "source": "service_categoryimporter_categoryimporter_validatereferences", - "target": "service_categoryimporter_categoryimporter_existingids", - "confidence_score": 1.0 + "target": "service_categoryimporter_categoryimporter_existingids" }, { "relation": "imports", @@ -139174,6 +140224,16 @@ "source": "controller_paymentcontroller_paymentcontroller", "target": "controller_basecontroller_basecontroller" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Controller/PaymentController.php", + "source_location": "L561", + "weight": 1.0, + "source": "controller_paymentcontroller_paymentcontroller", + "target": "controller_paymentcontroller_paymentcontroller_activegateways", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -139705,6 +140765,17 @@ "source": "controller_paymentcontroller_paymentcontroller_initiatesubscription", "target": "src_payment_controller_paymentcontroller_php_payment" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Controller/PaymentController.php", + "source_location": "L553", + "weight": 1.0, + "source": "controller_paymentcontroller_paymentcontroller_config", + "target": "controller_paymentcontroller_paymentcontroller_activegateways", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -140374,6 +141445,16 @@ "source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_initiate" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/MellatGateway.php", + "source_location": "L24", + "weight": 1.0, + "source": "gateway_mellatgateway_mellatgateway", + "target": "gateway_mellatgateway_mellatgateway_isconfigured", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -140414,6 +141495,17 @@ "source": "gateway_mellatgateway_mellatgateway", "target": "gateway_mellatgateway_mellatgateway_verify" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/MellatGateway.php", + "source_location": "L26", + "weight": 1.0, + "source": "gateway_mellatgateway_mellatgateway_isconfigured", + "target": "gateway_mellatgateway_mellatgateway_cfg", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -141566,6 +142658,16 @@ "source": "gateway_mockgateway_mockgateway", "target": "gateway_mockgateway_mockgateway_initiate" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/MockGateway.php", + "source_location": "L9", + "weight": 1.0, + "source": "gateway_mockgateway_mockgateway", + "target": "gateway_mockgateway_mockgateway_isconfigured", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -141618,6 +142720,16 @@ "source": "gateway_paymentgatewayinterface", "target": "gateway_paymentgatewayinterface_initiate" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/PaymentGatewayInterface.php", + "source_location": "L12", + "weight": 1.0, + "source": "gateway_paymentgatewayinterface", + "target": "gateway_paymentgatewayinterface_isconfigured", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -141751,6 +142863,16 @@ "source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_initiate" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/SepGateway.php", + "source_location": "L23", + "weight": 1.0, + "source": "gateway_sepgateway_sepgateway", + "target": "gateway_sepgateway_sepgateway_isconfigured", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -141761,6 +142883,17 @@ "source": "gateway_sepgateway_sepgateway", "target": "gateway_sepgateway_sepgateway_verify" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/Payment/Gateway/SepGateway.php", + "source_location": "L25", + "weight": 1.0, + "source": "gateway_sepgateway_sepgateway_isconfigured", + "target": "gateway_sepgateway_sepgateway_cfg", + "confidence_score": 1.0 + }, { "relation": "calls", "context": "call", @@ -146101,6 +147234,17 @@ "source": "controller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller" }, + { + "relation": "imports", + "context": "import", + "confidence": "EXTRACTED", + "source_file": "src/Secretary/Controller/SecretaryController.php", + "source_location": "L13", + "weight": 1.0, + "source": "controller_secretarycontroller", + "target": "smslog", + "confidence_score": 1.0 + }, { "relation": "imports", "context": "import", @@ -146215,6 +147359,16 @@ "source": "controller_secretarycontroller_secretarycontroller", "target": "controller_secretarycontroller_secretarycontroller_listbyclinic" }, + { + "relation": "method", + "confidence": "EXTRACTED", + "source_file": "src/Secretary/Controller/SecretaryController.php", + "source_location": "L125", + "weight": 1.0, + "source": "controller_secretarycontroller_secretarycontroller", + "target": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", + "confidence_score": 1.0 + }, { "relation": "method", "confidence": "EXTRACTED", @@ -146246,6 +147400,17 @@ "source": "controller_secretarycontroller_secretarycontroller_create", "target": "constant_errorcodes_errorcodes" }, + { + "relation": "calls", + "context": "call", + "confidence": "EXTRACTED", + "source_file": "src/Secretary/Controller/SecretaryController.php", + "source_location": "L119", + "weight": 1.0, + "source": "controller_secretarycontroller_secretarycontroller_create", + "target": "controller_secretarycontroller_secretarycontroller_sendwelcomesms", + "confidence_score": 1.0 + }, { "relation": "references_constant", "confidence": "EXTRACTED", @@ -172989,6 +174154,156 @@ "source": "prompt_pre_registration_\u0646\u06a9\u0627\u062a_\u0627\u062c\u0631\u0627\u06cc\u06cc", "target": "prompt_pre_registration_\u067e\u0633\u0648\u0631\u062f_\u062a\u0635\u0627\u062f\u0641\u06cc" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways", + "target": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L203", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L123", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0631\u0641\u0639_\u0628\u0627\u06af_\u0647\u0627\u06cc_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646_cors_payment_config_500_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644_\u0648_callback_\u0645\u0644\u062a", + "target": "prompt_production_fixes_cors_payment_gateways_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L33", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_production_fixes_cors_payment_gateways_cors_config_packages_nelmio_cors_yaml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L102", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_production_fixes_cors_payment_gateways_mellatgateway_\u062a\u0634\u062e\u06cc\u0635_\u0641\u0639\u0627\u0644_\u0628\u0648\u062f\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L63", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_production_fixes_cors_payment_gateways_payment_config_paymentcontroller_config_\u062e\u0637_\u06f5\u06f4\u06f6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L77", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_production_fixes_cors_payment_gateways_resolvegateway_callback_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L112", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_production_fixes_cors_payment_gateways_\u0641\u0631\u0627\u0646\u062a_subscriptionpage_tsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L125", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_production_fixes_cors_payment_gateways_\u06f1_\u0631\u0641\u0639_cors_\u067e\u0631\u0648\u062f\u0627\u06a9\u0634\u0646", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L145", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_production_fixes_cors_payment_gateways_\u06f2_\u0631\u0641\u0639_payment_config_500_\u0641\u0642\u0637_\u062f\u0631\u06af\u0627\u0647_\u0647\u0627\u06cc_\u0641\u0639\u0627\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/production-fixes-cors-payment-gateways.md", + "source_location": "L189", + "weight": 1.0, + "source": "prompt_production_fixes_cors_payment_gateways_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_production_fixes_cors_payment_gateways_\u06f3_callback_\u0647\u0631_\u062f\u0631\u06af\u0627\u0647_\u0645\u0637\u0627\u0628\u0642_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_ipg_\u0645\u0644\u062a", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -173389,6 +174704,186 @@ "source": "prompt_qa_bug_audit_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_qa_bug_audit_\u06f7_\u062a\u0648\u0644\u06cc\u062f_\u06af\u0632\u0627\u0631\u0634_\u0628\u0627\u06af" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_qa_full_system_audit", + "target": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L11", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L25", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637_\u0646\u0642\u0634\u0647_\u0633\u06cc\u0633\u062a\u0645_\u0628\u0631\u0627\u06cc_\u062a\u0633\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L170", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0642\u0627\u0644\u0628_\u06af\u0632\u0627\u0631\u0634_\u0628\u0631\u0627\u06cc_\u0647\u0631_\u06cc\u0627\u0641\u062a\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0646\u0642\u0634_\u0627\u062c\u0631\u0627\u06a9\u0646\u0646\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L189", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L19", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L73", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L45", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_\u0633\u06cc\u0633\u062a\u0645_\u0628\u06a9_\u0627\u0646\u062f_symfony_api_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "prompt_qa_full_system_audit_\u067e\u06cc\u0634_\u0646\u06cc\u0627\u0632\u0647\u0627_\u0642\u0628\u0644_\u0627\u0632_\u0634\u0631\u0648\u0639_\u062a\u0633\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L77", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f0_baseline", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L87", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f1_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u067e\u0627\u0633\u062e_\u0648_envelope", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L105", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f2_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u0648_\u0645\u062c\u0648\u0632\u0647\u0627_auth_rbac", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L121", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f3_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0648\u0631\u0648\u062f\u06cc_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u062e\u0637\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L129", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f4_\u0627\u0645\u0646\u06cc\u062a_api", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L137", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f5_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react_spa", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L153", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f6_\u06cc\u06a9\u067e\u0627\u0631\u0686\u06af\u06cc_\u0648_\u0633\u0646\u0627\u0631\u06cc\u0648\u0647\u0627\u06cc_\u0648\u0627\u0642\u0639\u06cc_\u06a9\u0627\u0631\u0628\u0631_e2e", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/qa-full-system-audit.md", + "source_location": "L164", + "weight": 1.0, + "source": "prompt_qa_full_system_audit_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_qa_full_system_audit_\u0641\u0627\u0632_\u06f7_\u062a\u062f\u0648\u06cc\u0646_\u06af\u0632\u0627\u0631\u0634_\u0646\u0647\u0627\u06cc\u06cc", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -174819,6 +176314,126 @@ "source": "prompt_secretary_context_scope_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_secretary_context_scope_\u06f7_patientcontroller_scope_aware" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms", + "target": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L17", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L132", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L13", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L29", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L71", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u062e\u0648\u0634_\u0622\u0645\u062f_\u0647\u0646\u06af\u0627\u0645_\u062a\u0639\u0631\u06cc\u0641_\u0645\u0646\u0634\u06cc_\u062c\u062f\u06cc\u062f", + "target": "prompt_secretary_welcome_sms_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L73", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_secretary_welcome_sms_\u06f1_\u0627\u0641\u0632\u0648\u062f\u0646_\u062a\u06af_\u062c\u062f\u06cc\u062f_\u062f\u0631_smslog", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L83", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_secretary_welcome_sms_\u06f2_\u0627\u0641\u0632\u0648\u062f\u0646_template_\u067e\u06cc\u0634_\u0641\u0631\u0636_\u062f\u0631_smsmessagetemplate_defaults", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L100", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_secretary_welcome_sms_\u06f3_\u062a\u0632\u0631\u06cc\u0642_\u0633\u0631\u0648\u06cc\u0633_\u0647\u0627\u06cc_sms_\u062f\u0631_\u06a9\u0646\u062a\u0631\u0644\u0631", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/secretary-welcome-sms.md", + "source_location": "L112", + "weight": 1.0, + "source": "prompt_secretary_welcome_sms_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_secretary_welcome_sms_\u06f4_\u0627\u0631\u0633\u0627\u0644_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0639\u062f_\u0627\u0632_\u0633\u0627\u062e\u062a_\u0645\u0648\u0641\u0642_\u0645\u0646\u0634\u06cc", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -175699,6 +177314,236 @@ "source": "prompt_sms_login_\u062c\u0631\u06cc\u0627\u0646_\u0647\u0627\u06cc_api", "target": "prompt_sms_login_\u062d\u0627\u0644\u062a_sms" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L1", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only", + "target": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L7", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0632\u0645\u06cc\u0646\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L31", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L303", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L23", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0647\u062f\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L47", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L177", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L3", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0633\u0627\u062f\u0647_\u0633\u0627\u0632\u06cc_\u062a\u0646\u0638\u06cc\u0645\u0627\u062a_\u067e\u06cc\u0627\u0645\u06a9_sms_\u0641\u0642\u0637_api_key_\u0627\u0632_env", + "target": "prompt_sms_settings_apikey_env_only_\u067e\u0631\u0648\u0698\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L49", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f1_\u0641\u0631\u0645_\u067e\u0646\u0644_assets_admin_pages_settingspage_tsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L98", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f2_src_config_repository_siteconfigrepository_php_defaults_\u062e\u0637\u0648\u0637_\u06f3\u06f2_\u06f3\u06f7", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L110", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f3_src_config_controller_siteconfigcontroller_php_allowed_keys_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L122", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f4_src_sms_provider_kavehnegarprovider_php_\u062e\u0637\u0648\u0637_\u06f1\u06f3_\u06f2\u06f4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L137", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f5_src_sms_controller_smswalletcontroller_php_\u062e\u0637_\u06f5\u06f6", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L143", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f6_config_services_yaml_\u062e\u0637\u0648\u0637_\u06f9\u06f2_\u06f9\u06f9", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L157", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_\u06a9\u062f_\u0648\u0627\u0642\u0639\u06cc", + "target": "prompt_sms_settings_apikey_env_only_\u06f7_env_\u0641\u0639\u0644\u06cc_env_\u062e\u0637\u0648\u0637_\u06f3\u06f8_\u06f4\u06f2_\u0648_\u06f6\u06f0_\u06f6\u06f4", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L179", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f1_backend_provider_\u06a9\u0627\u0648\u0647_\u0646\u06af\u0627\u0631_\u0641\u0642\u0637_\u0627\u0632_env", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L193", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f2_backend_\u062d\u0630\u0641_\u06a9\u0644\u06cc\u062f\u0647\u0627\u06cc_sms_\u0627\u0632_config", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L198", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f3_backend_\u0642\u06cc\u0645\u062a_\u067e\u06cc\u0627\u0645\u06a9_\u0628\u0647_\u062b\u0627\u0628\u062a", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L213", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f4_backend_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a_read_only_\u06a9\u0644\u06cc\u062f_\u062f\u0631_\u067e\u0646\u0644", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L230", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f5_config_services_yaml", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L242", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f6_frontend_assets_admin_pages_settingspage_tsx", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L277", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f7_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0647\u0645\u0647_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_env", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": ".claude/prompt/sms-settings-apikey-env-only.md", + "source_location": "L295", + "weight": 1.0, + "source": "prompt_sms_settings_apikey_env_only_\u0648\u0638\u0627\u06cc\u0641", + "target": "prompt_sms_settings_apikey_env_only_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_docs_api_sms_md", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -187005,9 +188850,9 @@ "source_file": "docs/api/category-import.md", "source_location": "L117", "weight": 1.0, + "confidence_score": 1.0, "source": "api_category_import_category_import_export_api", - "target": "api_category_import_seeding_a_from_scratch_database", - "confidence_score": 1.0 + "target": "api_category_import_seeding_a_from_scratch_database" }, { "relation": "contains", @@ -188449,6 +190294,16 @@ "source": "api_doctor_service_delete_api_v1_admin_doctor_service_id", "target": "api_doctor_service_response_200_136" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/doctor-service.md", + "source_location": "L156", + "weight": 1.0, + "source": "api_doctor_service_bulk_import_export", + "target": "api_doctor_service_sorting_by_id", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -189439,6 +191294,16 @@ "source": "api_insurance_tenantservicecoverage_\u067e\u0648\u0634\u0634_\u062e\u062f\u0645\u062a_\u062a\u062d\u062a_\u06cc\u06a9_\u0642\u0631\u0627\u0631\u062f\u0627\u062f_\u0628\u06cc\u0645\u0647_\u0641\u0627\u0632_\u06f2", "target": "api_insurance_put_api_v1_billing_tenant_insurances_uuid_service_coverage" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/insurance.md", + "source_location": "L468", + "weight": 1.0, + "source": "api_insurance_bulk_import_export", + "target": "api_insurance_sorting_by_id", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -189779,6 +191644,16 @@ "source": "api_location_get_api_v1_categorys_bundle_legacy", "target": "api_location_path_parameters_237" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/location.md", + "source_location": "L259", + "weight": 1.0, + "source": "api_location_bulk_import_export", + "target": "api_location_sorting_by_id", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -190023,11 +191898,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L116", + "source_location": "L122", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_post_api_v1_payment_appointment", - "target": "api_payment_errors_116" + "target": "api_payment_errors_122", + "confidence_score": 1.0 }, { "relation": "contains", @@ -190043,11 +191918,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L98", + "source_location": "L104", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_post_api_v1_payment_appointment", - "target": "api_payment_response_200_98" + "target": "api_payment_response_200_104", + "confidence_score": 1.0 }, { "relation": "contains", @@ -190093,11 +191968,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L203", + "source_location": "L215", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_post_api_v1_subscription_payment", - "target": "api_payment_errors_203" + "target": "api_payment_errors_215", + "confidence_score": 1.0 }, { "relation": "contains", @@ -190113,41 +191988,41 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L191", + "source_location": "L203", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_post_api_v1_subscription_payment", - "target": "api_payment_response_200_191" + "target": "api_payment_response_200_203", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L260", + "source_location": "L272", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_errors_260" + "target": "api_payment_errors_272", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L226", + "source_location": "L238", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_path_parameters_226" + "target": "api_payment_path_parameters_238", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/payment.md", - "source_location": "L231", + "source_location": "L243", "weight": 1.0, - "confidence_score": 1.0, "source": "api_payment_get_api_v1_payment_uuid", - "target": "api_payment_response_200_231" + "target": "api_payment_response_200_243", + "confidence_score": 1.0 }, { "relation": "contains", @@ -191239,6 +193114,16 @@ "source": "api_secretary", "target": "api_secretary_secretary_api" }, + { + "relation": "references", + "confidence": "EXTRACTED", + "source_file": "docs/api/secretary.md", + "source_location": "L127", + "weight": 1.0, + "source": "api_secretary", + "target": "api_sms", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -191353,11 +193238,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L167", + "source_location": "L169", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretary_uuid", - "target": "api_secretary_errors_167" + "target": "api_secretary_errors_169", + "confidence_score": 1.0 }, { "relation": "contains", @@ -191383,91 +193268,91 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L211", + "source_location": "L213", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_errors_211" + "target": "api_secretary_errors_213", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L183", + "source_location": "L185", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_request_body_application_json_183" + "target": "api_secretary_request_body_application_json_185", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L207", + "source_location": "L209", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_patch_api_v1_secretary_uuid", - "target": "api_secretary_response_200_207" + "target": "api_secretary_response_200_209", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L233", + "source_location": "L235", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_delete_api_v1_secretary_uuid", - "target": "api_secretary_errors_233" + "target": "api_secretary_errors_235", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L227", + "source_location": "L229", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_delete_api_v1_secretary_uuid", - "target": "api_secretary_response_200_227" + "target": "api_secretary_response_200_229", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L275", + "source_location": "L277", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_errors_275" + "target": "api_secretary_errors_277", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L249", + "source_location": "L251", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_path_parameters_249" + "target": "api_secretary_path_parameters_251", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L255", + "source_location": "L257", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_doctoruuid", - "target": "api_secretary_response_200_255" + "target": "api_secretary_response_200_257", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L323", + "source_location": "L325", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_errors_323" + "target": "api_secretary_errors_325", + "confidence_score": 1.0 }, { "relation": "contains", @@ -191483,21 +193368,21 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L291", + "source_location": "L293", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_path_parameters_291" + "target": "api_secretary_path_parameters_293", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/secretary.md", - "source_location": "L297", + "source_location": "L299", "weight": 1.0, - "confidence_score": 1.0, "source": "api_secretary_get_api_v1_secretaries_clinic_clinicuuid", - "target": "api_secretary_response_200_297" + "target": "api_secretary_response_200_299", + "confidence_score": 1.0 }, { "relation": "contains", @@ -191839,6 +193724,16 @@ "source": "api_sms_sms_api", "target": "api_sms_admin_endpoints" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/sms.md", + "source_location": "L7", + "weight": 1.0, + "source": "api_sms_sms_api", + "target": "api_sms_configuration", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -191999,55 +193894,55 @@ "source": "api_sms_post_api_v1_sms_send", "target": "api_sms_response_200" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/sms.md", + "source_location": "L89", + "weight": 1.0, + "source": "api_sms_post_api_v1_sms_send_template", + "target": "api_sms_errors_89", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/sms.md", + "source_location": "L61", + "weight": 1.0, + "source": "api_sms_post_api_v1_sms_send_template", + "target": "api_sms_request_body_application_json_61", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", "source_location": "L81", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_errors_81" + "target": "api_sms_response_200_81", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L53", + "source_location": "L143", "weight": 1.0, - "confidence_score": 1.0, - "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_request_body_application_json_53" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/api/sms.md", - "source_location": "L73", - "weight": 1.0, - "confidence_score": 1.0, - "source": "api_sms_post_api_v1_sms_send_template", - "target": "api_sms_response_200_73" - }, - { - "relation": "contains", - "confidence": "EXTRACTED", - "source_file": "docs/api/sms.md", - "source_location": "L135", - "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template", - "target": "api_sms_errors_135" + "target": "api_sms_errors_143", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L97", + "source_location": "L105", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template", - "target": "api_sms_request_body_application_json_97" + "target": "api_sms_request_body_application_json_105", + "confidence_score": 1.0 }, { "relation": "contains", @@ -192063,131 +193958,131 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L153", + "source_location": "L161", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_get_api_v1_sms_template_uuid", - "target": "api_sms_errors_153" + "target": "api_sms_errors_161", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L150", + "source_location": "L158", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_get_api_v1_sms_template_uuid", - "target": "api_sms_response_200_150" + "target": "api_sms_response_200_158", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L181", + "source_location": "L189", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_errors_181" + "target": "api_sms_errors_189", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L167", + "source_location": "L175", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_request_body_application_json_167" + "target": "api_sms_request_body_application_json_175", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L178", + "source_location": "L186", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_sms_template_uuid", - "target": "api_sms_response_200_178" + "target": "api_sms_response_200_186", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L200", + "source_location": "L208", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template_uuid_submit", - "target": "api_sms_errors_200" + "target": "api_sms_errors_208", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L197", + "source_location": "L205", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_sms_template_uuid_submit", - "target": "api_sms_response_200_197" + "target": "api_sms_response_200_205", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L221", + "source_location": "L229", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_delete_api_v1_sms_template_uuid", - "target": "api_sms_errors_221" + "target": "api_sms_errors_229", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L216", + "source_location": "L224", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_delete_api_v1_sms_template_uuid", - "target": "api_sms_response_200_216" + "target": "api_sms_response_200_224", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L236", + "source_location": "L244", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_get_api_v1_admin_sms_templates", - "target": "api_sms_response_200_236" + "target": "api_sms_response_200_244", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L259", + "source_location": "L267", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", - "target": "api_sms_request_body_application_json_259" + "target": "api_sms_request_body_application_json_267", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L272", + "source_location": "L280", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_approve", - "target": "api_sms_response_200_272" + "target": "api_sms_response_200_280", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L297", + "source_location": "L305", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "target": "api_sms_errors_297" + "target": "api_sms_errors_305", + "confidence_score": 1.0 }, { "relation": "contains", @@ -192203,11 +194098,11 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L294", + "source_location": "L302", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_post_api_v1_admin_sms_template_uuid_reject", - "target": "api_sms_response_200_294" + "target": "api_sms_response_200_302", + "confidence_score": 1.0 }, { "relation": "contains", @@ -192323,21 +194218,21 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L487", + "source_location": "L497", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_get_api_v1_admin_sms_messages", - "target": "api_sms_response_200_487" + "target": "api_sms_response_200_497", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L529", + "source_location": "L539", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_errors_529" + "target": "api_sms_errors_539", + "confidence_score": 1.0 }, { "relation": "contains", @@ -192353,21 +194248,21 @@ "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L516", + "source_location": "L526", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_request_body_516" + "target": "api_sms_request_body_526", + "confidence_score": 1.0 }, { "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/sms.md", - "source_location": "L524", + "source_location": "L534", "weight": 1.0, - "confidence_score": 1.0, "source": "api_sms_patch_api_v1_admin_sms_messages_tag", - "target": "api_sms_response_200_524" + "target": "api_sms_response_200_534", + "confidence_score": 1.0 }, { "relation": "contains", @@ -192609,6 +194504,16 @@ "source": "api_specialty_delete_api_v1_admin_specialty_id", "target": "api_specialty_response_200_185" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/specialty.md", + "source_location": "L205", + "weight": 1.0, + "source": "api_specialty_bulk_import_export", + "target": "api_specialty_sorting_by_id", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -192999,6 +194904,16 @@ "source": "api_tag_delete_api_v1_admin_tag_id", "target": "api_tag_response_200_122" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/api/tag.md", + "source_location": "L142", + "weight": 1.0, + "source": "api_tag_bulk_import_export", + "target": "api_tag_sorting_by_id", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -196469,6 +198384,186 @@ "source": "qa_bug_report_2026_06_20_\u0628\u0627\u06af_\u0647\u0627", "target": "qa_bug_report_2026_06_20_medium_bug_2_\u06a9\u062f_\u0645\u0644\u06cc_\u0646\u0627\u0645\u0639\u062a\u0628\u0631_\u0628\u062f\u0648\u0646_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc_\u0633\u0645\u062a_\u0633\u0631\u0648\u0631_\u0630\u062e\u06cc\u0631\u0647_\u0645\u06cc_\u0634\u0648\u062f" }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L1", + "weight": 1.0, + "source": "qa_full_system_audit_report", + "target": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L166", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u062d\u0644_\u0634\u062f\u0647_\u062f\u0631_\u062f\u0648\u0631_\u062f\u0648\u0645_\u0642\u0628\u0644\u0627_\u0645\u0633\u062f\u0648\u062f_\u0628\u0648\u062f\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L6", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u062e\u0644\u0627\u0635\u0647_\u0627\u062c\u0631\u0627\u06cc\u06cc", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L191", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u062f\u0633\u062a\u0648\u0631\u0627\u062a_\u0628\u0627\u0632\u062a\u0648\u0644\u06cc\u062f_\u062e\u0644\u0627\u0635\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L151", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u0646\u062a\u0627\u06cc\u062c_\u0645\u062b\u0628\u062a_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L175", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u0647\u0646\u0648\u0632_\u0646\u06cc\u0627\u0632\u0645\u0646\u062f_\u0628\u0631\u0631\u0633\u06cc_\u0646\u0647_\u062a\u0623\u06cc\u06cc\u062f_\u0633\u0644\u0627\u0645\u062a_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0645\u062d\u06cc\u0637", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L23", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06af\u0632\u0627\u0631\u0634_\u0645\u0645\u06cc\u0632\u06cc_\u06a9\u0627\u0645\u0644_qa_clinicpro_backend_symfony_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_react", + "target": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L125", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f10_\u0631\u0627\u0647\u0646\u0645\u0627\u06cc_\u06a9\u0647\u0646\u0647_\u062f\u0631_claude_md_endpoint_categorys_bundle_\u0645\u0646\u062a\u0642\u0644_\u0634\u062f\u0647", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L130", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f11_\u062f\u0627\u0634\u0628\u0648\u0631\u062f_\u062f\u06a9\u062a\u0631_get_api_v1_dashboard_doctor_\u0647\u0645\u06cc\u0634\u0647_500_\u0641\u06cc\u0644\u062f_\u0646\u0627\u0645\u0648\u062c\u0648\u062f_\u062f\u0631_dql_\u0631\u0641\u0639_\u0634\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L25", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f1_phpstan_\u0645\u0642\u0627\u06cc\u0633\u0647_\u0647\u0645\u06cc\u0634\u0647_\u062f\u0631\u0633\u062a_\u062f\u0631_\u0645\u062d\u0627\u0633\u0628\u0647_estimated_sms_\u0631\u0641\u0639_\u0634\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L32", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f2_\u062a\u0633\u062a_\u0647\u0627\u06cc_phpunit_\u0628\u0647_api_\u062e\u0627\u0631\u062c\u06cc_kavenegar_\u062f\u0631\u062e\u0648\u0627\u0633\u062a_\u0648\u0627\u0642\u0639\u06cc_\u0645\u06cc_\u0632\u0646\u0646\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L39", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f3_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a_seed_\u0646\u0634\u062f\u0647_\u0641\u0642\u0637_\u06a9\u0627\u0631\u0628\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0648\u062c\u0648\u062f_\u062f\u0627\u0631\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L59", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f4_\u0627\u0633\u06a9\u0631\u06cc\u067e\u062a_seeder_create_test_users_php_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0631\u062f", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L65", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f5_\u0627\u062f\u0645\u06cc\u0646_\u0628\u0627_jwt_\u0645\u0639\u062a\u0628\u0631_\u0628\u0647_api_doc_swagger_ui_\u062f\u0633\u062a\u0631\u0633\u06cc_\u0646\u062f\u0627\u0631\u062f_401", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L72", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f6_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u06a9\u062f\u0647\u0627\u06cc_\u062e\u0637\u0627_\u0628\u06cc\u0646_\u062f\u0627\u0645\u0646\u0647_\u0647\u0627", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L86", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f7_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u0646\u0627\u0645_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u0628\u06cc\u0646_\u0633\u0647_endpoint", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L97", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f8_\u0646\u0628\u0648\u062f_rate_limiting_\u0631\u0648\u06cc_post_api_v1_user_login_brute_force", + "confidence_score": 1.0 + }, + { + "relation": "contains", + "confidence": "EXTRACTED", + "source_file": "docs/qa/full-system-audit-report.md", + "source_location": "L112", + "weight": 1.0, + "source": "qa_full_system_audit_report_\u06cc\u0627\u0641\u062a\u0647_\u0647\u0627", + "target": "qa_full_system_audit_report_f9_\u0646\u0627\u0633\u0627\u0632\u06af\u0627\u0631\u06cc_\u062f\u0631_public_endpoints_cities_provinces_\u0646\u06cc\u0627\u0632_\u0628\u0647_auth_specialties_\u0639\u0645\u0648\u0645\u06cc", + "confidence_score": 1.0 + }, { "relation": "contains", "confidence": "EXTRACTED", @@ -202511,5 +204606,5 @@ } ], "hyperedges": [], - "built_at_commit": "22937dfa566e32055df1c4d1ccd10a7810e51c5b" + "built_at_commit": "312013227422ee17b0f75af17c248105bbf9d19d" } \ No newline at end of file diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json index 1ebea870..7999d24a 100644 --- a/graphify-out/manifest.json +++ b/graphify-out/manifest.json @@ -50,8 +50,8 @@ "semantic_hash": "" }, "assets/admin/components/ui/DataTable.tsx": { - "mtime": 1781106808.7261238, - "ast_hash": "2cbc50f8b50ca306376156e71ecd11e0", + "mtime": 1782844471.5008922, + "ast_hash": "66195ae92c42ae390126c7297f7b313d", "semantic_hash": "" }, "assets/admin/components/ui/FeatureGate.tsx": { @@ -135,8 +135,8 @@ "semantic_hash": "" }, "assets/admin/hooks/usePaymentConfig.ts": { - "mtime": 1781516938.5504773, - "ast_hash": "e252c1261b74d4e8731aeebc89dd1c70", + "mtime": 1782897046.749733, + "ast_hash": "f71056b62ca0ccc9149c93d336053afa", "semantic_hash": "" }, "assets/admin/hooks/usePwaInstall.ts": { @@ -190,8 +190,8 @@ "semantic_hash": "" }, "assets/admin/pages/CategoriesPage.tsx": { - "mtime": 1782838987.6521325, - "ast_hash": "e4e8f39e7e7a03b947ce2883ed595a37", + "mtime": 1782844707.7293186, + "ast_hash": "a5dab31477ec4359b88f76d40bcb35bf", "semantic_hash": "" }, "assets/admin/pages/ClaimsPage.tsx": { @@ -345,8 +345,8 @@ "semantic_hash": "" }, "assets/admin/pages/SettingsPage.tsx": { - "mtime": 1782319832.2352676, - "ast_hash": "4f8d36873a0259600edb4c6df585f356", + "mtime": 1782894003.7974715, + "ast_hash": "2916e104ddce46b458010eb2160bfb9a", "semantic_hash": "" }, "assets/admin/pages/SettlementDetailPage.tsx": { @@ -375,8 +375,8 @@ "semantic_hash": "" }, "assets/admin/pages/SubscriptionPage.tsx": { - "mtime": 1781521748.0909407, - "ast_hash": "e1b5ce2c29dc8b72d8558a7029fde768", + "mtime": 1782897125.5820823, + "ast_hash": "edb160fc9e85f915400426c76610e8c4", "semantic_hash": "" }, "assets/admin/pages/UserDetailPage.tsx": { @@ -1150,8 +1150,8 @@ "semantic_hash": "" }, "src/Config/Controller/SiteConfigController.php": { - "mtime": 1782319753.4996316, - "ast_hash": "ee22114d1ceb9a3c78dbbcc5f1ff00ce", + "mtime": 1782893916.7348526, + "ast_hash": "cb994abce239f65aa6ea56e240beaaf9", "semantic_hash": "" }, "src/Config/Entity/SiteConfig.php": { @@ -1165,8 +1165,8 @@ "semantic_hash": "" }, "src/Config/Repository/SiteConfigRepository.php": { - "mtime": 1782319853.8285086, - "ast_hash": "a36b1f176fdffd7494eab5ca95c1994c", + "mtime": 1782893889.148054, + "ast_hash": "fafe887c5ba8de7a9185969f028a79d9", "semantic_hash": "" }, "src/Config/Repository/TaxRateHistoryRepository.php": { @@ -1175,8 +1175,8 @@ "semantic_hash": "" }, "src/Dashboard/Controller/DashboardController.php": { - "mtime": 1781522583.7337224, - "ast_hash": "15596779638e99e2edfd7c06d6b95c1e", + "mtime": 1782895903.5178185, + "ast_hash": "8f4817a710736a74b1bb317fafc58614", "semantic_hash": "" }, "src/Doctor/Controller/DoctorController.php": { @@ -1205,8 +1205,8 @@ "semantic_hash": "" }, "src/DoctorService/Controller/DoctorServiceController.php": { - "mtime": 1781522583.7325408, - "ast_hash": "af0d4cbed07d0ce02335a56dbe487b62", + "mtime": 1782844356.1675708, + "ast_hash": "3646bb6c12f6457448041a44b735fe8c", "semantic_hash": "" }, "src/DoctorService/Entity/DoctorService.php": { @@ -1220,8 +1220,8 @@ "semantic_hash": "" }, "src/Insurance/Controller/InsuranceController.php": { - "mtime": 1782728407.196781, - "ast_hash": "dfd2f646daaa51e37e7cda5a5ee4bb6b", + "mtime": 1782844375.1354241, + "ast_hash": "8ddef824ed781bfe74e169ff3084677c", "semantic_hash": "" }, "src/Insurance/Entity/DoctorInsurance.php": { @@ -1295,8 +1295,8 @@ "semantic_hash": "" }, "src/Location/Controller/LocationController.php": { - "mtime": 1781522583.7341, - "ast_hash": "a966ca5c350f63adb7beb8031a79f85f", + "mtime": 1782844299.834749, + "ast_hash": "6a1296178827cdc99c6775db563c41f0", "semantic_hash": "" }, "src/Location/Entity/City.php": { @@ -1360,8 +1360,8 @@ "semantic_hash": "" }, "src/Payment/Controller/PaymentController.php": { - "mtime": 1782728407.1982014, - "ast_hash": "d5a27f54ec1c8e8b2fe60a882f057d3d", + "mtime": 1782896983.4736924, + "ast_hash": "da4dadd9532dda783eb589c368f18801", "semantic_hash": "" }, "src/Payment/Entity/Payment.php": { @@ -1370,18 +1370,18 @@ "semantic_hash": "" }, "src/Payment/Gateway/MellatGateway.php": { - "mtime": 1782750018.5149405, - "ast_hash": "0f96d01c7e17a2894388f74825a232b3", + "mtime": 1782896964.9076507, + "ast_hash": "67b1f4180e7bc36425229c9a9c1f2fa7", "semantic_hash": "" }, "src/Payment/Gateway/MockGateway.php": { - "mtime": 1782728407.1989012, - "ast_hash": "af7b427acbde56329bbaf52ba04cbc16", + "mtime": 1782896968.6033201, + "ast_hash": "69fbe77ed2ae3a608171039dc1c70b97", "semantic_hash": "" }, "src/Payment/Gateway/PaymentGatewayInterface.php": { - "mtime": 1781012928.7423482, - "ast_hash": "172d5a31bedd652818c51e16300809f8", + "mtime": 1782896961.142725, + "ast_hash": "bb1e00f14c34dbf92e95c97d374655b4", "semantic_hash": "" }, "src/Payment/Gateway/PaymentInitResult.php": { @@ -1395,8 +1395,8 @@ "semantic_hash": "" }, "src/Payment/Gateway/SepGateway.php": { - "mtime": 1782750047.5329745, - "ast_hash": "c08e78093b3efe725e6798c81bf63dd2", + "mtime": 1782896967.2453976, + "ast_hash": "3f729de2819cf3691231152b3f40924a", "semantic_hash": "" }, "src/Payment/Repository/PaymentRepository.php": { @@ -1475,8 +1475,8 @@ "semantic_hash": "" }, "src/Secretary/Controller/SecretaryController.php": { - "mtime": 1781522583.7368307, - "ast_hash": "43deb96d880f36196e71117be2a303fe", + "mtime": 1782902851.0718935, + "ast_hash": "9cbf2e62e58b071b044dda089612dd4a", "semantic_hash": "" }, "src/Secretary/Entity/DoctorSecretary.php": { @@ -1610,18 +1610,18 @@ "semantic_hash": "" }, "src/Sms/Controller/SmsWalletController.php": { - "mtime": 1782110309.289352, - "ast_hash": "f0ac5431b3dc6d534cc8e89921db9b63", + "mtime": 1782894791.5387394, + "ast_hash": "6cf62fad0a8d8cfb3831f09c44a2d49c", "semantic_hash": "" }, "src/Sms/Entity/SmsLog.php": { - "mtime": 1782650883.6075425, - "ast_hash": "ed15413ebacfb4eb68a3dd360ca71dd5", + "mtime": 1782902823.9580002, + "ast_hash": "42a038068db64c9b94f3ab6f99a51cd8", "semantic_hash": "" }, "src/Sms/Entity/SmsMessageTemplate.php": { - "mtime": 1782650883.608437, - "ast_hash": "80e121593117667abfa485ca75db50b9", + "mtime": 1782902828.6619399, + "ast_hash": "0c8f32c4fab56c8d392dfe11c937c9a3", "semantic_hash": "" }, "src/Sms/Entity/SmsSettings.php": { @@ -1650,8 +1650,8 @@ "semantic_hash": "" }, "src/Sms/Provider/KavehNegarProvider.php": { - "mtime": 1782749956.4059756, - "ast_hash": "fd66bf9a71b06d16beebf133d8f8a847", + "mtime": 1782893881.0959284, + "ast_hash": "53cc58e643103610cd94b9345b0ffb39", "semantic_hash": "" }, "src/Sms/Provider/RanginehProvider.php": { @@ -1715,8 +1715,8 @@ "semantic_hash": "" }, "src/Specialty/Controller/SpecialtyController.php": { - "mtime": 1781636247.0767584, - "ast_hash": "7dd13db2726ecf50e95a0bd3f30138d0", + "mtime": 1782844333.7139277, + "ast_hash": "70f51cf45c69597db2ef7f0ef4d70143", "semantic_hash": "" }, "src/Specialty/Entity/Specialty.php": { @@ -1785,8 +1785,8 @@ "semantic_hash": "" }, "src/Tag/Controller/TagController.php": { - "mtime": 1781522583.7362611, - "ast_hash": "f018e7f0c5ef515f69bf8de5124730f3", + "mtime": 1782844396.159141, + "ast_hash": "df774affd64bf2ff8464a26a44ec813a", "semantic_hash": "" }, "src/Tag/Entity/Tag.php": { @@ -2185,8 +2185,8 @@ "semantic_hash": "" }, "README.MD": { - "mtime": 1781782021.0983558, - "ast_hash": "1c377bc406f512817799035b93a8c75f", + "mtime": 1782845053.6544068, + "ast_hash": "57c7558eea01b735b714575a461ee751", "semantic_hash": "" }, "TEST_USERS.md": { @@ -2300,8 +2300,8 @@ "semantic_hash": "" }, "config/services.yaml": { - "mtime": 1782843927.2499301, - "ast_hash": "6ddd0cb49e2be3c0d29348e843166ed1", + "mtime": 1782902861.3039489, + "ast_hash": "0cd5b457c6df19eb90acd03c130bd713", "semantic_hash": "" }, "docs/Architecture_Audit.md": { @@ -2390,8 +2390,8 @@ "semantic_hash": "" }, "docs/api/doctor-service.md": { - "mtime": 1782839237.8086488, - "ast_hash": "3c3f4da25682c21bf769a2c170b9dc6f", + "mtime": 1782844893.6804142, + "ast_hash": "513b9a4f7674d8b749eb46efbe277797", "semantic_hash": "" }, "docs/api/doctor.md": { @@ -2400,13 +2400,13 @@ "semantic_hash": "" }, "docs/api/insurance.md": { - "mtime": 1782839237.8089066, - "ast_hash": "66c99e8593c6e48fbbb065610b626e68", + "mtime": 1782844893.6809301, + "ast_hash": "9d6d21db0004b0e780025123ea3a63c9", "semantic_hash": "" }, "docs/api/location.md": { - "mtime": 1782839237.808474, - "ast_hash": "9db8856184fd38eed6f377ac425584fa", + "mtime": 1782844893.6796494, + "ast_hash": "bd93b9cdb9c60259814f49193b6cab77", "semantic_hash": "" }, "docs/api/patient.md": { @@ -2415,8 +2415,8 @@ "semantic_hash": "" }, "docs/api/payment.md": { - "mtime": 1782728407.1095557, - "ast_hash": "599a89165ddf5f33daeb04a6d97a3b5a", + "mtime": 1782897235.6571848, + "ast_hash": "839fec75d0238c39881d9339c26ad43e", "semantic_hash": "" }, "docs/api/rating.md": { @@ -2430,8 +2430,8 @@ "semantic_hash": "" }, "docs/api/secretary.md": { - "mtime": 1781520442.059899, - "ast_hash": "5b095b626c415a5040be915cce3e0da0", + "mtime": 1782902968.2934825, + "ast_hash": "15b4e6808419e91bc4a7a80b3c528813", "semantic_hash": "" }, "docs/api/settlement.md": { @@ -2440,13 +2440,13 @@ "semantic_hash": "" }, "docs/api/sms.md": { - "mtime": 1782367200.5063455, - "ast_hash": "613eaa742d3ca4a72845425c46ad546c", + "mtime": 1782902976.009701, + "ast_hash": "2654051c73dddf1e702d686ef5790a47", "semantic_hash": "" }, "docs/api/specialty.md": { - "mtime": 1782839237.8082483, - "ast_hash": "45c0b1034a9e6bd3ea4973796b5538c1", + "mtime": 1782844893.6802263, + "ast_hash": "7dd9e75c13f557620e04a3d04cf58140", "semantic_hash": "" }, "docs/api/staff.md": { @@ -2460,8 +2460,8 @@ "semantic_hash": "" }, "docs/api/tag.md": { - "mtime": 1782839237.8090699, - "ast_hash": "0f848b663c3d80081a71fb46b8088c87", + "mtime": 1782844893.6810575, + "ast_hash": "7b0cd30025e12582e9fa5af37d10d9fb", "semantic_hash": "" }, "docs/api/user-profile.md": { @@ -3458,5 +3458,30 @@ "mtime": 1782843813.8434396, "ast_hash": "47a348a1a7cf97da5de81caad5f026d9", "semantic_hash": "" + }, + ".claude/prompt/production-fixes-cors-payment-gateways.md": { + "mtime": 1782896794.1745296, + "ast_hash": "d16b27e408fa695d271b021c754ac78a", + "semantic_hash": "" + }, + ".claude/prompt/qa-full-system-audit.md": { + "mtime": 1782894418.0248322, + "ast_hash": "8d2eda6fd68cc8886bfbfe71cb74a7d4", + "semantic_hash": "" + }, + ".claude/prompt/secretary-welcome-sms.md": { + "mtime": 1782902722.286387, + "ast_hash": "f98cb6bc9719953fb2a4cae0ba1c3531", + "semantic_hash": "" + }, + ".claude/prompt/sms-settings-apikey-env-only.md": { + "mtime": 1782893768.6085784, + "ast_hash": "0563289f277db924b6228fad067b0e32", + "semantic_hash": "" + }, + "docs/qa/full-system-audit-report.md": { + "mtime": 1782896060.8114219, + "ast_hash": "9d1436d8787330a1cb06c54c4e896069", + "semantic_hash": "" } } \ No newline at end of file diff --git a/src/Secretary/Controller/SecretaryController.php b/src/Secretary/Controller/SecretaryController.php index 1835c085..95289286 100644 --- a/src/Secretary/Controller/SecretaryController.php +++ b/src/Secretary/Controller/SecretaryController.php @@ -10,6 +10,9 @@ use App\Secretary\Entity\DoctorSecretary; use App\Secretary\Repository\DoctorSecretaryRepository; use App\Shared\Constant\ErrorCodes; use App\Shared\Controller\BaseController; +use App\Sms\Entity\SmsLog; +use App\Sms\Service\SmsService; +use App\Sms\Service\SmsTextResolver; use App\Subscription\Service\SubscriptionService; use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; @@ -30,6 +33,9 @@ class SecretaryController extends BaseController private readonly UserRepository $userRepo, private readonly UserPasswordHasherInterface $hasher, private readonly SubscriptionService $subscriptionService, + private readonly SmsService $smsService, + private readonly SmsTextResolver $smsText, + private readonly string $appUrl, ) {} #[Route('/api/v1/secretary', methods: ['POST'])] @@ -110,9 +116,29 @@ class SecretaryController extends BaseController $this->secretaryRepo->save($secretary); + $this->sendWelcomeSms($mobile, $doctor, $ownerClinic); + return $this->success(['data' => $secretary->toArray()], 201); } + /** پیامک خوش‌آمد به منشی تازه‌تعریف‌شده — متن از template تگ TAG_SECRETARY */ + private function sendWelcomeSms(string $mobile, $doctor, $ownerClinic): void + { + $ownerName = $ownerClinic !== null + ? ($ownerClinic->getName() ?? 'کلینیک') + : ($doctor->getUser()->getRealName() ?? 'پزشک'); + + $link = rtrim($this->appUrl, '/') . '/login'; + + $message = $this->smsText->resolve(SmsLog::TAG_SECRETARY, [ + 'owner' => $ownerName, + 'username' => $mobile, + 'link' => $link, + ]); + + $this->smsService->dispatchAsync($mobile, $message, tag: SmsLog::TAG_SECRETARY); + } + #[Route('/api/v1/secretary/{uuid}', methods: ['GET'])] public function show(string $uuid, #[CurrentUser] User $currentUser): JsonResponse { diff --git a/src/Sms/Entity/SmsLog.php b/src/Sms/Entity/SmsLog.php index 51bfdc61..6c298cde 100644 --- a/src/Sms/Entity/SmsLog.php +++ b/src/Sms/Entity/SmsLog.php @@ -19,6 +19,7 @@ class SmsLog public const TAG_NOTIFICATION_MOBILE = 'notification_mobile'; public const TAG_USER_TEMPLATE = 'user_template'; public const TAG_WELCOME = 'welcome'; + public const TAG_SECRETARY = 'secretary'; public const TAGS = [ self::TAG_GLOBAL, @@ -29,6 +30,7 @@ class SmsLog self::TAG_NOTIFICATION_MOBILE, self::TAG_USER_TEMPLATE, self::TAG_WELCOME, + self::TAG_SECRETARY, ]; #[ORM\Id] diff --git a/src/Sms/Entity/SmsMessageTemplate.php b/src/Sms/Entity/SmsMessageTemplate.php index 6c5d8a17..c8ebda5b 100644 --- a/src/Sms/Entity/SmsMessageTemplate.php +++ b/src/Sms/Entity/SmsMessageTemplate.php @@ -43,6 +43,11 @@ class SmsMessageTemplate 'body' => "کد تأیید شماره اعلان شما: {code}\nاعتبار: ۵ دقیقه", 'variables' => ['code'], ], + SmsLog::TAG_SECRETARY => [ + 'title' => 'دعوت به‌عنوان منشی', + 'body' => "شما به‌عنوان منشیِ {owner} در کلینیک‌پرو تعریف شدید.\nشماره‌کاربری: {username}\nلینک ورود: {link}", + 'variables' => ['owner', 'username', 'link'], + ], ]; #[ORM\Id]