setView('table')} title="جدول">
@@ -338,6 +349,8 @@ export default function DoctorsPage() {
{doc.mobile ?? '—'}
+ {doc.owner_status === 'unclaimed' && بدونمالک }
+ {doc.owner_status === 'pending_transfer' && در انتظار انتقال }
{doc.is_active ? 'فعال' : 'غیرفعال'}
diff --git a/assets/admin/pages/RepresentationProfilePage.tsx b/assets/admin/pages/RepresentationProfilePage.tsx
index 594f4298..837cf2e6 100644
--- a/assets/admin/pages/RepresentationProfilePage.tsx
+++ b/assets/admin/pages/RepresentationProfilePage.tsx
@@ -17,6 +17,35 @@ function toJalali(iso: string): string {
return y && m && d ? `${y}/${m}/${d}` : '';
}
+// ارقام فارسی/عربی → لاتین (کیبورد انگلیسی؛ ورودی چسباندهشده هم نرمال شود)
+function toLatinDigits(s: string): string {
+ return s.replace(/[۰-۹٠-٩]/g, (d) =>
+ String('۰۱۲۳۴۵۶۷۸۹٠١٢٣٤٥٦٧٨٩'.indexOf(d) % 10),
+ );
+}
+
+// اعتبارسنجی کد ملی ایران (طول ۱۰ + رقم کنترلی)
+function isValidIranNationalCode(code: string): boolean {
+ if (!/^\d{10}$/.test(code)) return false;
+ if (/^(\d)\1{9}$/.test(code)) return false; // ارقام یکسان نامعتبر
+ const check = +code[9];
+ let sum = 0;
+ for (let i = 0; i < 9; i++) sum += +code[i] * (10 - i);
+ const r = sum % 11;
+ return r < 2 ? check === r : check === 11 - r;
+}
+
+// اعتبارسنجی شبای ایران: IR + ۲۴ رقم + کنترل mod-97
+function isValidIranIban(raw: string): boolean {
+ const iban = toLatinDigits(raw).replace(/\s/g, '').toUpperCase();
+ if (!/^IR\d{24}$/.test(iban)) return false;
+ const rearranged = iban.slice(4) + iban.slice(0, 4);
+ const numeric = rearranged.replace(/[A-Z]/g, (c) => String(c.charCodeAt(0) - 55));
+ let rem = 0;
+ for (const ch of numeric) rem = (rem * 10 + +ch) % 97;
+ return rem === 1;
+}
+
interface IbanItem {
id: string;
iban: string;
@@ -86,16 +115,17 @@ export default function RepresentationProfilePage() {
});
const submitNationalCode = () => {
- const code = nationalCode.replace(/\D/g, '');
- if (code.length !== 10) { toast.error('کد ملی باید ۱۰ رقم باشد'); return; }
+ const code = toLatinDigits(nationalCode).replace(/\D/g, '');
+ if (!isValidIranNationalCode(code)) { toast.error('کد ملی نامعتبر است'); return; }
verifyMut.mutate(code);
};
const submitIban = () => {
- if (!iban.trim()) { toast.error('شماره شبا را وارد کنید'); return; }
+ const clean = toLatinDigits(iban).replace(/\s/g, '').toUpperCase();
+ if (!isValidIranIban(clean)) { toast.error('شماره شبا نامعتبر است (IR + ۲۴ رقم)'); return; }
const jalali = toJalali(birthDate);
if (!jalali) { toast.error('تاریخ تولد را انتخاب کنید'); return; }
- addIbanMut.mutate({ iban: iban.trim(), birth_date: jalali });
+ addIbanMut.mutate({ iban: clean, birth_date: jalali });
};
return (
@@ -127,7 +157,7 @@ export default function RepresentationProfilePage() {
setNationalCode(e.target.value.replace(/\D/g, ''))}
+ onChange={(e) => setNationalCode(toLatinDigits(e.target.value).replace(/\D/g, ''))}
style={{ width: 220, height: 38, padding: '0 12px', borderRadius: 'var(--r-sm)', border: '1px solid var(--border)', background: 'var(--surface)', color: 'var(--text)', fontSize: 13.5, boxSizing: 'border-box', textAlign: 'center' }}
/>
@@ -178,8 +208,9 @@ export default function RepresentationProfilePage() {
{verified && ibans.length < 2 && (
setIban(e.target.value)}
+ type="text" inputMode="numeric" dir="ltr" maxLength={26} value={iban}
+ placeholder="IR000000000000000000000000"
+ onChange={(e) => setIban(toLatinDigits(e.target.value).toUpperCase().replace(/[^IR0-9]/g, ''))}
style={{ width: 320, height: 38, padding: '0 12px', borderRadius: 'var(--r-sm)', border: '1px solid var(--border)', background: 'var(--surface)', color: 'var(--text)', fontSize: 13, boxSizing: 'border-box', fontFamily: 'monospace' }}
/>
**Controller:** `App\Doctor\Controller\DoctorClaimController` — منطق در `App\Doctor\Service\DoctorClaimService`
+> **مصرفکننده:** سایت عمومی Nobat724 (همهٔ دامنهها) + پنل ادمین
+
+پزشکِ ایمپورتشده از نظام پزشکی (`owner_status = unclaimed`) توسط پزشک واقعی تصاحب میشود.
+احراز هویت سمت سرور با **API.ir** انجام میشود (شاهکار: تطبیق موبایل↔کدملی؛ PersonInfo: تطبیق
+کدملی+تاریخ تولد و نام). هیچ درخواستی از فرانت به API.ir نمیرود و توکن API.ir هرگز به کلاینت
+نمیرسد. claim پس از تطبیق موفق **خودکار** نهایی میشود (بدون approve ادمین — تصمیم مستند در
+`.claude/prompt/irimc-import-complete.md` §۲.۲).
+
+## چرخهٔ وضعیت
+
+```
+unclaimed ──claim/transfer شروع──▶ pending_transfer ──موفق──▶ claimed
+ ▲ │شکست تطبیق/خطای استعلام
+ └───────────────────────────────────┘ (برگشت، قابل تلاش مجدد)
+```
+
+هر تلاش یک رکورد ممیزی در `doctor_claim_requests` میسازد — کد ملی فقط **hash sha256** و
+موبایل فقط **mask شده** ذخیره میشود؛ هیچ دادهٔ هویتی خام در DB یا لاگ نمیماند.
+
+---
+
+## GET `/api/v1/doctor/{uuid}/claim-info`
+
+**Permission:** عمومی (بدون JWT) — فقط برای رندر دکمهٔ «آیا شما این پزشک هستید؟»
+
+### Response `200`
+```json
+{ "success": true, "data": { "claimable": true, "owner_status": "unclaimed" } }
+```
+
+| کد | حالت |
+|---|---|
+| `404` | پزشک یافت نشد |
+
+---
+
+## POST `/api/v1/doctor/{uuid}/claim`
+
+**Permission:** `IS_AUTHENTICATED_FULLY` — کاربر با OTP لاگین شده (موبایلش تأییدشده است)
+**Rate limit:** limiter `doctor_claim` — ۵ تلاش در ساعت بهازای هر (کاربر، پزشک)
+**Captcha:** ALTCHA — بدنه باید payload کپچا بفرستد (`CaptchaGuard::assertValid`)؛ در dev با `ALTCHA_ENABLED=false` بیاثر است، در prod اجباری. خطا → `ERR_CAPTCHA_001` (۴۲۲).
+
+### Request
+```json
+{
+ "national_code": "0010007700",
+ "birth_date": "1371/1/1",
+ "first_name": "فرخنده",
+ "last_name": "حسینی",
+ "mobile": "09121234567",
+ "altcha": ""
+}
+```
+
+| فیلد | الزامی | قاعده |
+|---|:---:|---|
+| `national_code` | ✅ | ۱۰ رقم (ارقام فارسی پذیرفته و نرمال میشوند) |
+| `birth_date` | ✅ | شمسی `Y/m/d` |
+| `first_name` / `last_name` | ✅ | با هویت ثبت احوال و نام پروفایل تطبیق داده میشود (نرمالسازی ي/ی، ك/ک، نیمفاصله — `PersianText`) |
+| `mobile` | ❌ | اگر داده شود، باید با موبایل حساب کاربری یکی باشد وگرنه `422 ERR_CONFLICT_001`؛ اگر خالی باشد از موبایل کاربر لاگینشده استفاده میشود |
+| `altcha` | prod | payload کپچای ALTCHA |
+
+### مراحل سرور (اتمیک/ضد race)
+
+1. قفل `PESSIMISTIC_WRITE` روی ردیف پزشک → اگر `unclaimed` نبود `409`؛ اگر کاربر از قبل پزشکی دارد `409`؛ اگر کد ملی متعلق به کاربر دیگری است `409` — سپس `pending_transfer` + رکورد ممیزی (تراکنش کوتاه، بدون فراخوان خارجی داخل قفل).
+2. شاهکار (`ApiIrService::shahkarMatch`) — تطبیق موبایل کاربر با کد ملی. اگر API.ir پیکربندی نشده باشد، این گام skip و مبنا موبایلِ OTP-تأییدشده است.
+3. `PersonInfo` — تطبیق کدملی+تاریخ تولد؛ `alive=false` → رد.
+4. تطبیق نام: ورودی کاربر ↔ هویت تأییدشده ↔ نام پروفایل (بدون پیشوند «دکتر»).
+5. نهاییسازی اتمیک: `user_id` → کاربر واقعی، `ROLE_DOCTOR`، `national_code_verified=true`، `owner_status=claimed`، حذف امنِ کاربر جانشین (فقط با `ROLE_UNCLAIMED_DOCTOR` و بدون پزشک دیگر).
+6. پیامک خوشآمد (تمپلیت `welcome`، async).
+
+> شکست در گامهای ۲-۴ پروفایل را به `unclaimed` برمیگرداند تا پزشک واقعی بتواند دوباره تلاش کند.
+> نوبتدهی (`active_doctor_appointment`) خاموش میماند تا مالک جدید برنامهٔ کاری تعریف کند.
+
+### Response `200`
+```json
+{
+ "success": true,
+ "data": {
+ "status": "claimed",
+ "claim": { "uuid": "…" },
+ "doctor": { "uuid": "…", "name": "دکتر فرخنده حسینی" }
+ }
+}
+```
+
+### Errors
+| کد | HTTP | حالت |
+|---|---|---|
+| `ERR_AUTH_001` | 401 | بدون لاگین |
+| `ERR_NOT_FOUND_001` | 404 | پزشک یافت نشد |
+| `ERR_CONFLICT_001` | 409 | پروفایل قابل تصاحب نیست / کاربر پزشک دیگری دارد / درخواست همزمان دیگری در جریان است |
+| `ERR_PROFILE_001` | 409 | کد ملی قبلاً برای کاربر دیگری ثبت شده است |
+| `ERR_VALIDATION_001/002` | 422 | کد ملی/تاریخ/نام نامعتبر |
+| `ERR_IDENTITY_001` | 422 | عدم تطبیق هویت (شاهکار/ثبت احوال/نام) — پیام عمومی، ضد enumeration |
+| `ERR_RATE_LIMIT_001` | 429 | عبور از سقف تلاش |
+| `ERR_EXTERNAL_001` | 502 | خطا/تایماوت API.ir |
+| `ERR_EXTERNAL_002` | 503 | API.ir پیکربندی نشده (env) |
+
+---
+
+## POST `/api/v1/admin/doctors/{uuid}/transfer`
+
+انتقال دستی (ابزار پشتیبانی ادمین) — مستند کامل در `docs/api/doctor-import.md`.
+**Permission:** `ROLE_ADMIN`. بدنه `{ "mobile": "09…" }`. همان نهاییسازی claim را اجرا میکند
+و رکورد ممیزی با `verification_method="admin_manual"` میسازد.
+
+---
+
+## GET `/api/v1/admin/doctor-claims`
+
+**Permission:** `ROLE_ADMIN` — لیست ممیزی درخواستهای claim برای پشتیبانی عملیاتی.
+
+| Query | پیشفرض | توضیح |
+|---|---|---|
+| `status` | همه | `pending` \| `completed` \| `failed` |
+| `page` / `limit` | 1 / 20 (سقف 50) | صفحهبندی استاندارد |
+
+### Response `200` (paginated)
+```json
+{
+ "success": true,
+ "data": [
+ {
+ "uuid": "…",
+ "status": "completed",
+ "doctor": { "uuid": "…", "name": "دکتر فرخنده حسینی" },
+ "mobile_masked": "0912***4567",
+ "verification_method": "apiir_personinfo+shahkar",
+ "failure_reason": null,
+ "created_at": 1783750000,
+ "completed_at": 1783750040
+ }
+ ],
+ "meta": { "totalRecords": 1, "totalPages": 1, "currentPage": 1 }
+}
+```
+
+`failure_reason` فارسی و انسانیخوان است تا ادمین بدون خواندن لاگ سرور علت شکست را ببیند.
+
+---
+
+## env های مرتبط
+
+| متغیر | نقش |
+|---|---|
+| `APIIR_*` (baseUrl/token موجود `ApiIrService`) | استعلام شاهکار و PersonInfo |
+| `CRAWLER_SERVICE_TOKEN` | فقط برای لاگین سرویسی کرالر (`doctor-import.md`) — ربطی به claim ندارد |
+
+## تستها
+
+`tests/Doctor/DoctorClaimTest.php` (۱۱ سناریو، API.ir همیشه mock — هیچ تستی به سرویس واقعی
+درخواست نمیزند) و `tests/Shared/PersianTextTest.php` (نرمالسازی نام).
diff --git a/docs/api/doctor-import.md b/docs/api/doctor-import.md
index bae2475f..085c7c2a 100644
--- a/docs/api/doctor-import.md
+++ b/docs/api/doctor-import.md
@@ -1,8 +1,8 @@
# Doctor Import (IRIMC) API
> **Endpoint:** `POST /api/v1/admin/doctors/import`
-> **Permission:** `ROLE_ADMIN`
-> **Controller:** `App\Admin\Controller\AdminApiController::importDoctor`
+> **Permission:** `ROLE_ADMIN` **یا** `ROLE_IMPORTER` (نقش حداقلی کاربر سیستمی کرالر)
+> **Controller:** `App\Doctor\Controller\DoctorImportController::import` — منطق دامنه در `App\Doctor\Service\DoctorImportService`
وارد کردن یک پزشک از سازمان نظام پزشکی (`membersearch.irimc.org`) **بدون شماره موبایل**.
برخلاف `POST /api/v1/admin/doctors` (که موبایل معتبر ایرانی میخواهد)، این اندپوینت برای
@@ -31,12 +31,18 @@
## idempotency
-کلید یکتای منطقی: `(source, medical_system_code)`.
+کلید یکتای `(source, medical_system_code)` — از این نسخه **در سطح دیتابیس** هم unique است
+(`uniq_doctors_source_code`، migration `Version20260711150000`)؛ درخواست همزمانِ همان پزشک
+با retry داخلی به مسیر update میرود و هرگز رکورد تکراری نمیسازد.
- اگر پزشکی با همان `source`+`medical_system_code` وجود نداشته باشد → **ساخته** میشود (`201`).
- اگر وجود داشته باشد و `owner_status != claimed` → **بهروزرسانی** میشود (`200`).
- اگر وجود داشته باشد و `owner_status == claimed` → **رد** میشود (`200`, `skipped: "claimed"`)
تا دادهٔ مالک واقعی بازنویسی نشود.
+- **تکرار بین منابع:** اگر پزشکی با همان `medical_system_code` ولی `source` متفاوت
+ (مثلاً ثبت دستی در پنل) وجود داشته باشد → **رد** میشود (`200`, `skipped: "duplicate"`)؛
+ نه رکورد جدیدی ساخته میشود و نه رکورد موجود بازنویسی میشود. `uuid` همان رکورد موجود
+ برگردانده میشود (تست: `DoctorImportTest::testManualDoctorWithSameCodeIsNeverDuplicated`).
---
@@ -59,7 +65,7 @@
| فیلد | الزامی | توضیح |
|---|:---:|---|
-| `name` | ✅ | نام کامل پزشک |
+| `name` | ✅ | نام کامل پزشک — پیشوند «دکتر» **هنگام ذخیره حذف** میشود (کنوانسیون: نام بدون عنوان؛ UI خودش «دکتر» را جلو میگذارد). ورودی میتواند با یا بدون «دکتر» باشد. |
| `medical_system_code` | ✅ | کد نظام پزشکی (کلید idempotency) |
| `source` | — | پیشفرض `irimc` |
| `source_ref` | — | `profile_url` یا شناسهٔ مبدأ |
@@ -73,6 +79,22 @@
---
+## آدرس پیشفرض (مطب)
+
+هر پزشک ایمپورتشده **همیشه دستکم یک آدرس** (`doctor_addresses`، type=`personal`) دارد:
+
+- اگر پزشک هیچ آدرسی نداشته باشد، یک آدرس با نام **«مطب دکتر {نام}»** ساخته میشود و
+ شهر/استان آن از **اولین** عنصر آرایههای `cities`/`states` همان درخواست پر میشود.
+- در ایمپورت مجدد آدرس تکراری ساخته نمیشود؛ فقط فیلدهای **خالیِ** آدرس موجود
+ (نام/شهر/استان) backfill میشوند — مقادیر ویرایششده توسط کاربر بازنویسی نمیشوند.
+- اگر `cities`/`states` در درخواست نباشند، آدرس فقط با نام ساخته میشود (کرالر در حالت
+ auto همیشه هر دو را میفرستد).
+
+(تستها: `DoctorImportTest::testImportCreatesDefaultOfficeAddressWithCityAndProvince`،
+`testImportWithoutLocationStillCreatesOfficeAddress`)
+
+---
+
## Response
### `201 Created` (ساخته شد)
@@ -90,6 +112,11 @@
{ "success": true, "data": { "uuid": "…", "created": false, "skipped": "claimed" } }
```
+### `200 OK` (رد بهدلیل کد نظام پزشکی تکراری با منبع دیگر)
+```json
+{ "success": true, "data": { "uuid": "…", "created": false, "skipped": "duplicate" } }
+```
+
### `422` (اعتبارسنجی)
```json
{ "success": false, "data": null, "errors": [ { "code": "…", "message": "کد نظام پزشکی الزامی است", "field": "medical_system_code" } ] }
@@ -132,10 +159,16 @@
// Response 200
{ "success": true, "data": {
"uuid": "…", "owner_status": "claimed",
- "transferred_to": "09120000000", "placeholder_deleted": true
+ "user_mobile": "09120000000",
+ "claim": { "uuid": "…" }
} }
```
+> این اندپوینت در `App\Doctor\Controller\DoctorClaimController::transfer` است و همان
+> `DoctorClaimService::transferByAdmin` را صدا میزند؛ هر انتقال یک رکورد ممیزی در
+> `doctor_claim_requests` با `verification_method = "admin_manual"` میسازد.
+> جریان self-claim پزشک (با احراز هویت API.ir) در `docs/api/doctor-claim.md` مستند است.
+
| کد | حالت |
|---|---|
| `404` | پزشک یافت نشد |
@@ -154,13 +187,50 @@ php bin/console app:system-owner 0000000000 --password= --activate
php bin/console app:system-owner 0000000000 --deactivate
```
-کاربر باید `ROLE_ADMIN` و `status=1` داشته باشد تا لاگینِ رمزی (`POST /api/v1/user/login`)
-و فراخوانی این اندپوینت ممکن باشد.
+کاربر سیستمی **least privilege** است: فقط `ROLE_USER,ROLE_IMPORTER` میگیرد (اجرای مجدد
+دستور، `ROLE_ADMIN` قدیمی را هم حذف میکند). `ROLE_IMPORTER` فقط به همین اندپوینت ایمپورت
+دسترسی دارد و به هیچ اندپوینت `/api/v1/admin/*` دیگری راه ندارد (تست: `DoctorImportTest::testImporterRoleCanImportButNothingElse`).
-> ⚠️ **captcha:** مسیر `/api/v1/user/login` از `CaptchaGuard` رد میشود و این guard وقتی
-> `ALTCHA_ENABLED=true` باشد (مقدار فعلی `.env`) یک payloadِ altcha میخواهد. برای اجرای
-> بدونِمرورگرِ کرالر یکی از اینها لازم است:
-> ۱) روی همان سرور `ALTCHA_ENABLED=false` در `.env.local` (سادهترین برای dev)، یا
-> ۲) افزودن یک استثنا در `PasswordAuthenticator` که برای کاربر مالک سیستمی captcha را رد کند،
-> یا ۳) لاگین سرویس با یک هدر سرّیِ مورد اعتماد. تا وقتی این حل نشود، لاگین کرالر با ۴۲۲
-> (`ERR_CAPTCHA_001`) رد میشود.
+### لاگین سرویسی (captcha)
+
+مسیر `/api/v1/user/login` کپچای ALTCHA دارد. برای لاگین headless کرالر، هدر سرّی
+تعریف شده است:
+
+```
+X-Service-Token: <مقدار env CRAWLER_SERVICE_TOKEN>
+```
+
+- فقط **کپچا** دور زده میشود؛ rate limit و اعتبارسنجی رمز دستنخورده میمانند.
+- اگر env خالی/تعریفنشده باشد هیچ bypass وجود ندارد (secure by default).
+- چرخش credential: تغییر `CRAWLER_SERVICE_TOKEN` + تغییر رمز با `app:system-owner … --password=…`؛
+ ابطال فوری: `--deactivate`.
+
+### backfill نقش جانشینهای قدیمی
+
+جانشینهای ساختهشده قبل از افزودن نقش marker:
+
+```bash
+php bin/console app:doctors:backfill-surrogate-role --dry-run # فقط گزارش
+php bin/console app:doctors:backfill-surrogate-role # اعمال
+```
+
+### اصلاح نام رکوردهای قدیمی (حذف پیشوند «دکتر»)
+
+رکوردهای IRIMC که پیش از این تغییر با پیشوند «دکتر» ذخیره شده بودند:
+
+```bash
+php bin/console app:doctors:fix-irimc-names --dry-run # فقط گزارش
+php bin/console app:doctors:fix-irimc-names # اعمال (فقط source='irimc')
+```
+
+### پاکسازی کامل برای دیتابیس تست
+
+حذف همهٔ پزشکان + دادههای وابسته (FK-safe) برای شروع تمیز:
+
+```bash
+php bin/console app:doctors:purge # dry-run: فقط گزارش تعداد هر جدول
+php bin/console app:doctors:purge --force # حذف واقعی + کاربران جانشین یتیم
+```
+
+> ⚠️ مخرب — `appointments`/`comments`/`rates` را هم پاک میکند. روی prod نیازمند
+> `--i-know-this-is-prod` است و پیشفرض متوقف میشود.
diff --git a/docs/api/doctor.md b/docs/api/doctor.md
index 6d5f5fe3..c1f2f989 100644
--- a/docs/api/doctor.md
+++ b/docs/api/doctor.md
@@ -1,5 +1,9 @@
# Doctor API
+> فیلد `owner_status` (`claimed` | `unclaimed` | `pending_transfer`) به خروجی لیست و جزئیات پزشک
+> اضافه شده است — پروفایل `unclaimed` (ایمپورت نظام پزشکی) در سایت دکمهٔ «تصاحب پروفایل» میگیرد
+> (`docs/api/doctor-claim.md`) و نوبتدهی آنلاینش غیرفعال است.
+
> **Prefix:** `/api/v1/doctor`, `/api/v1/doctors`, `/api/v1/clinic-pro/doctor-address*`
>
> Numeric path params on the address routes (`doctor-address/{id}`, `doctor-addresses/{doctorId}`) require `\d+`; a non-numeric value returns a clean `404` instead of a `500`.
@@ -101,6 +105,7 @@ Get doctor detail with clinics.
"free_turn": "دوشنبه 09:00–13:00",
"hours_of_work": "شنبه: 09:00–13:00 و 14:00–18:00 | یکشنبه: 09:00–13:00",
"active": true,
+ "owner_status": "claimed",
"specialties": [{ "uuid": "...", "id": "1", "name": "قلب و عروق", "parent_id": null }],
"expertise": [{ "uuid": "...", "id": "3", "name": "نوار قلب" }],
"address": [],
@@ -204,7 +209,8 @@ List doctors with pagination and filters.
"point": "3.5",
"free_turn": "دوشنبه 09:00–13:00",
"hours_of_work": "شنبه: 09:00–13:00 و 14:00–18:00 | یکشنبه: 09:00–13:00",
- "active": true
+ "active": true,
+ "owner_status": "claimed"
}
],
"meta": {
@@ -263,7 +269,7 @@ Updated doctor object (same structure as GET single).
Delete a doctor profile.
-**Permission:** `ROLE_ADMIN`
+**Permission:** `IS_AUTHENTICATED_FULLY` — **admin** (any profile) **or the owner** of a `claimed` profile (`doctor.user === current user`). Other users get `403`.
> **Side effect:** the doctor's insurance configuration (`tenant_insurances`, `entity_insurance_pricing`, and their `tenant_service_coverages`) is purged in the same request — these reference the doctor via a polymorphic `entity_id` with no DB FK, so the cleanup is enforced in the application.
@@ -286,8 +292,8 @@ Delete a doctor profile.
| Code | HTTP | Description |
|------|------|-------------|
| `ERR_AUTH_001` | 401 | Missing token |
-| `ERR_AUTH_006` | 403 | Not admin |
-| `ERR_NOT_FOUND_001` | 404 | Doctor not found |
+| `ERR_FORBIDDEN_001` | 403 | Not admin and not the owner of this claimed profile |
+| `ERR_VALIDATION_002` | 404 | Doctor not found |
| `ERR_CONFLICT_001` | 409 | Doctor has existing appointments and cannot be deleted |
---
diff --git a/graphify-out/.graphify_labels.json b/graphify-out/.graphify_labels.json
index bc33f471..8844aab0 100644
--- a/graphify-out/.graphify_labels.json
+++ b/graphify-out/.graphify_labels.json
@@ -713,7 +713,6 @@
"711": "Community 711",
"712": "Community 712",
"713": "Community 713",
- "714": "Community 714",
"715": "Community 715",
"716": "Community 716",
"717": "Community 717",
@@ -727,8 +726,6 @@
"725": "Community 725",
"726": "Community 726",
"727": "Community 727",
- "728": "Community 728",
- "729": "Community 729",
"730": "Community 730",
"731": "Community 731",
"732": "Community 732",
@@ -736,16 +733,32 @@
"734": "Community 734",
"735": "Community 735",
"736": "Community 736",
- "737": "Community 737",
"738": "Community 738",
"739": "Community 739",
- "740": "Community 740",
- "741": "Community 741",
"742": "Community 742",
"743": "Community 743",
"744": "Community 744",
- "745": "Community 745",
"746": "Community 746",
"747": "Community 747",
- "748": "Community 748"
+ "748": "Community 748",
+ "749": "Community 749",
+ "750": "Community 750",
+ "751": "Community 751",
+ "752": "Community 752",
+ "753": "Community 753",
+ "754": "Community 754",
+ "755": "Community 755",
+ "756": "Community 756",
+ "757": "Community 757",
+ "759": "Community 759",
+ "760": "Community 760",
+ "761": "Community 761",
+ "763": "Community 763",
+ "764": "Community 764",
+ "766": "Community 766",
+ "767": "Community 767",
+ "768": "Community 768",
+ "769": "Community 769",
+ "770": "Community 770",
+ "771": "Community 771"
}
diff --git a/graphify-out/GRAPH_REPORT.md b/graphify-out/GRAPH_REPORT.md
index 38269216..11dd4441 100644
--- a/graphify-out/GRAPH_REPORT.md
+++ b/graphify-out/GRAPH_REPORT.md
@@ -1,16 +1,16 @@
# Graph Report - clinicpro (2026-07-11)
## Corpus Check
-- 743 files · ~552,971 words
+- 767 files · ~566,250 words
- Verdict: corpus is large enough that graph structure adds value.
## Summary
-- 9384 nodes · 12986 edges · 749 communities (603 shown, 146 thin omitted)
-- Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 281 edges (avg confidence: 0.8)
+- 9614 nodes · 13338 edges · 762 communities (602 shown, 160 thin omitted)
+- Extraction: 98% EXTRACTED · 2% INFERRED · 0% AMBIGUOUS · INFERRED: 294 edges (avg confidence: 0.8)
- Token cost: 0 input · 0 output
## Graph Freshness
-- Built from commit: `a5e3408e`
+- Built from commit: `3dcd4f3b`
- Run `git rev-parse HEAD` and compare to check if the graph is stale.
- Run `graphify update .` after code changes (no API cost).
@@ -715,7 +715,6 @@
- [[_COMMUNITY_Community 711|Community 711]]
- [[_COMMUNITY_Community 712|Community 712]]
- [[_COMMUNITY_Community 713|Community 713]]
-- [[_COMMUNITY_Community 714|Community 714]]
- [[_COMMUNITY_Community 715|Community 715]]
- [[_COMMUNITY_Community 716|Community 716]]
- [[_COMMUNITY_Community 717|Community 717]]
@@ -729,8 +728,6 @@
- [[_COMMUNITY_Community 725|Community 725]]
- [[_COMMUNITY_Community 726|Community 726]]
- [[_COMMUNITY_Community 727|Community 727]]
-- [[_COMMUNITY_Community 728|Community 728]]
-- [[_COMMUNITY_Community 729|Community 729]]
- [[_COMMUNITY_Community 730|Community 730]]
- [[_COMMUNITY_Community 731|Community 731]]
- [[_COMMUNITY_Community 732|Community 732]]
@@ -738,51 +735,65 @@
- [[_COMMUNITY_Community 734|Community 734]]
- [[_COMMUNITY_Community 735|Community 735]]
- [[_COMMUNITY_Community 736|Community 736]]
-- [[_COMMUNITY_Community 737|Community 737]]
- [[_COMMUNITY_Community 738|Community 738]]
- [[_COMMUNITY_Community 739|Community 739]]
-- [[_COMMUNITY_Community 740|Community 740]]
-- [[_COMMUNITY_Community 741|Community 741]]
- [[_COMMUNITY_Community 742|Community 742]]
- [[_COMMUNITY_Community 743|Community 743]]
- [[_COMMUNITY_Community 744|Community 744]]
-- [[_COMMUNITY_Community 745|Community 745]]
- [[_COMMUNITY_Community 746|Community 746]]
- [[_COMMUNITY_Community 747|Community 747]]
- [[_COMMUNITY_Community 748|Community 748]]
+- [[_COMMUNITY_Community 749|Community 749]]
+- [[_COMMUNITY_Community 750|Community 750]]
+- [[_COMMUNITY_Community 751|Community 751]]
+- [[_COMMUNITY_Community 752|Community 752]]
+- [[_COMMUNITY_Community 753|Community 753]]
+- [[_COMMUNITY_Community 754|Community 754]]
+- [[_COMMUNITY_Community 757|Community 757]]
+- [[_COMMUNITY_Community 759|Community 759]]
+- [[_COMMUNITY_Community 760|Community 760]]
+- [[_COMMUNITY_Community 761|Community 761]]
+- [[_COMMUNITY_Community 763|Community 763]]
+- [[_COMMUNITY_Community 764|Community 764]]
+- [[_COMMUNITY_Community 766|Community 766]]
+- [[_COMMUNITY_Community 767|Community 767]]
+- [[_COMMUNITY_Community 768|Community 768]]
+- [[_COMMUNITY_Community 769|Community 769]]
+- [[_COMMUNITY_Community 770|Community 770]]
+- [[_COMMUNITY_Community 771|Community 771]]
## God Nodes (most connected - your core abstractions)
-1. `BaseController` - 82 edges
-2. `ApiTestCase` - 76 edges
+1. `BaseController` - 86 edges
+2. `ApiTestCase` - 80 edges
3. `Doctor` - 59 edges
-4. `api` - 55 edges
+4. `api` - 56 edges
5. `UserProfile` - 52 edges
6. `Clinic` - 50 edges
7. `useAuthStore` - 43 edges
-8. `AdminApiController` - 43 edges
-9. `ApiResponse` - 41 edges
-10. `formatDate()` - 39 edges
+8. `ApiResponse` - 42 edges
+9. `AdminApiController` - 41 edges
+10. `formatDate()` - 40 edges
## Surprising Connections (you probably didn't know these)
- `ServiceTariffModal()` --calls--> `formatNumber()` [EXTRACTED]
assets/admin/components/ServiceTariffModal.tsx → assets/admin/lib/utils.ts
- `Pagination()` --calls--> `formatNumber()` [EXTRACTED]
assets/admin/components/ui/Pagination.tsx → assets/admin/lib/utils.ts
+- `MyFinancialPage()` --calls--> `formatRial()` [EXTRACTED]
+ assets/admin/pages/MyFinancialPage.tsx → assets/admin/lib/utils.ts
- `SettlementsPage()` --calls--> `formatRial()` [EXTRACTED]
assets/admin/pages/SettlementsPage.tsx → assets/admin/lib/utils.ts
-- `NewAppointmentModal()` --calls--> `useAuthStore` [EXTRACTED]
- assets/admin/pages/AppointmentsPage.tsx → assets/admin/stores/authStore.ts
-- `LogoUploadField()` --calls--> `useAuthStore` [EXTRACTED]
- assets/admin/pages/CategoriesPage.tsx → assets/admin/stores/authStore.ts
+- `LogsPage()` --calls--> `formatDateTime()` [EXTRACTED]
+ assets/admin/pages/LogsPage.tsx → assets/admin/lib/utils.ts
## Import Cycles
- None detected.
-## Communities (749 total, 146 thin omitted)
+## Communities (762 total, 160 thin omitted)
### Community 0 - "Community 0"
Cohesion: 0.05
-Nodes (41): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, DEGREE_OPTIONS, DoctorFormPage() (+33 more)
+Nodes (39): ALLOWED_ROLES, PrivateRoute(), PublicRoute(), RoleRoute(), queryClient, toastStyle, DEGREE_OPTIONS, DoctorFormPage() (+31 more)
### Community 1 - "Community 1"
Cohesion: 0.03
@@ -805,12 +816,12 @@ Cohesion: 0.07
Nodes (3): UserProfile, self, User
### Community 6 - "Community 6"
-Cohesion: 0.12
-Nodes (12): SettlementController, SettlementRepository, WalletTransactionRepository, Settlement, JsonResponse, Request, User, ManagerRegistry (+4 more)
+Cohesion: 0.09
+Nodes (15): SettlementController, SettlementRepository, WalletTransactionRepository, CommissionService, Settlement, JsonResponse, Request, User (+7 more)
### Community 7 - "Community 7"
-Cohesion: 0.06
-Nodes (8): DoctorService, Clinic, DoctorServiceRepository, Collection, Doctor, self, User, ManagerRegistry
+Cohesion: 0.05
+Nodes (11): DoctorServiceController, DoctorService, Clinic, DoctorServiceRepository, Collection, Doctor, self, User (+3 more)
### Community 8 - "Community 8"
Cohesion: 0.08
@@ -829,24 +840,24 @@ Cohesion: 0.50
Nodes (4): UserActiveContextRepository, ManagerRegistry, User, UserActiveContext
### Community 12 - "Community 12"
-Cohesion: 0.04
-Nodes (47): Clinic Doctor Invitation API, DELETE `/api/v1/admin/clinic/invitation/{invUuid}`, Errors, Errors, Errors, Errors, Errors, Errors (+39 more)
+Cohesion: 0.05
+Nodes (42): Clinic Doctor Invitation API, DELETE `/api/v1/admin/clinic/invitation/{invUuid}`, Errors, Errors, Errors, Errors, Errors, Errors (+34 more)
### Community 13 - "Community 13"
Cohesion: 0.05
-Nodes (36): get, PaymentConfig, PaymentGatewayInfo, usePaymentConfig(), api, ApiError, ApiResponse, downloadFile() (+28 more)
+Nodes (35): get, PaymentConfig, PaymentGatewayInfo, api, ApiError, ApiResponse, downloadFile(), getToken() (+27 more)
### Community 14 - "Community 14"
-Cohesion: 0.10
-Nodes (12): AppointmentSettingsController, DateOverride, Holiday, DateOverrideRepository, HolidayRepository, JsonResponse, Request, User (+4 more)
+Cohesion: 0.15
+Nodes (8): AppointmentSettingsController, Holiday, HolidayRepository, JsonResponse, Request, User, Doctor, ManagerRegistry
### Community 15 - "Community 15"
Cohesion: 0.25
Nodes (7): PaymentController, Appointment, JsonResponse, Payment, Request, Response, User
### Community 16 - "Community 16"
-Cohesion: 0.09
-Nodes (6): PatientSession, Appointment, Collection, PatientRecord, self, SessionService
+Cohesion: 0.07
+Nodes (7): PatientSession, SmsWallet, Appointment, Collection, PatientRecord, self, SessionService
### Community 17 - "Community 17"
Cohesion: 0.05
@@ -858,19 +869,19 @@ Nodes (38): API, API, API, API, API, Route, Route, Route (+30 more)
### Community 19 - "Community 19"
Cohesion: 0.03
-Nodes (56): CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, LogoUploadField(), ProvinceForm, provinceSchema (+48 more)
+Nodes (57): usePaymentConfig(), CityForm, citySchema, ImportError, InsuranceForm, insuranceSchema, LogoUploadField(), ProvinceForm (+49 more)
### Community 20 - "Community 20"
-Cohesion: 0.12
-Nodes (6): AdminApiController, Collection, JsonResponse, Request, User, StreamedResponse
+Cohesion: 0.13
+Nodes (4): AdminApiController, JsonResponse, Request, StreamedResponse
### Community 21 - "Community 21"
Cohesion: 0.03
Nodes (48): formatNumber(), ClinicAddress, ClinicDetailPage(), ClinicDoctorItem, ClinicInvitation, EditForm, editSchema, HUES_LIST (+40 more)
### Community 22 - "Community 22"
-Cohesion: 0.15
-Nodes (9): RatingController, Like, LikeRepository, JsonResponse, Request, User, Comment, ManagerRegistry (+1 more)
+Cohesion: 0.29
+Nodes (4): RatingController, JsonResponse, Request, User
### Community 23 - "Community 23"
Cohesion: 0.05
@@ -889,8 +900,8 @@ Cohesion: 0.24
Nodes (4): InsuranceController, JsonResponse, Request, User
### Community 27 - "Community 27"
-Cohesion: 0.06
-Nodes (35): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 62. 🟡 `PATCH` patch, 63. 🔴 `DELETE` DELETE (+27 more)
+Cohesion: 0.05
+Nodes (40): 55. 🟢 `GET` all tag, 56. 🟢 `GET` supplementary_insurance, 57. 🟢 `GET` categories list, 58. 🟢 `GET` all state, 59. 🟢 `GET` all city, 60. 🟢 `GET` all specially doctor, 61. 🔵 `POST` post, 62. 🟡 `PATCH` patch (+32 more)
### Community 28 - "Community 28"
Cohesion: 0.08
@@ -910,7 +921,7 @@ Nodes (32): 10. Modal / Dialog, 11. Toast Notifications, 12. Empty States & Load
### Community 33 - "Community 33"
Cohesion: 0.07
-Nodes (25): CoverageRow, Draft, KIND, TenantInsurance, ServiceTariffModal(), TariffResponse, TariffRow, EMPTY_ITEMS (+17 more)
+Nodes (22): CoverageRow, Draft, KIND, TenantInsurance, ServiceTariffModal(), TariffResponse, TariffRow, Contract (+14 more)
### Community 34 - "Community 34"
Cohesion: 0.06
@@ -989,8 +1000,8 @@ Cohesion: 0.07
Nodes (26): الزامات UI, باگفیکس صفحه نوبتها, باگ ۱ — کرش تقویم, باگ ۲ — روز هفته در DateNavigator, باگ ۳ — پیام «slot نیست», باگ ۴ — نوبت جدید: نام اجباری + find-or-create patient, باگ ۵ — patient_mobile نشان میدهد موبایل پزشک, باگ ۶ — نوبتهای رزرو شده در نمایش زمانبندی (+18 more)
### Community 53 - "Community 53"
-Cohesion: 0.08
-Nodes (15): AppLogRepository, PaymentLog, ClaimItemRepository, PaymentLogRepository, PreRegistrationRepository, SiteConfigRepository, SmsSettingsRepository, ServiceEntityRepository (+7 more)
+Cohesion: 0.09
+Nodes (15): AppLogRepository, ClaimItemRepository, DoctorClaimRequestRepository, DoctorInsuranceRepository, InvoiceRepository, PreRegistrationRepository, ServiceEntityRepository, ManagerRegistry (+7 more)
### Community 54 - "Community 54"
Cohesion: 0.10
@@ -1009,8 +1020,8 @@ Cohesion: 0.08
Nodes (24): Blog API, DELETE `/api/v1/blog/{uuid}`, Errors, Errors, Errors, Errors, Errors, GET `/api/v1/blog/{slug}` (+16 more)
### Community 58 - "Community 58"
-Cohesion: 0.28
-Nodes (4): Blog, BlogRepository, ManagerRegistry, QueryBuilder
+Cohesion: 0.15
+Nodes (8): Blog, BlogController, BlogRepository, JsonResponse, Request, User, ManagerRegistry, QueryBuilder
### Community 59 - "Community 59"
Cohesion: 0.22
@@ -1029,24 +1040,20 @@ Cohesion: 0.08
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.06
-Nodes (41): FreeVisitPrice(), Pricing, cn(), formatRial(), iranMobileOptionalSchema, iranMobileSchema, isValidIranMobile(), maskMobile() (+33 more)
+Cohesion: 0.05
+Nodes (50): FreeVisitPrice(), Pricing, cn(), formatDate(), formatDateTime(), formatRial(), iranMobileOptionalSchema, iranMobileSchema (+42 more)
### Community 64 - "Community 64"
-Cohesion: 0.29
-Nodes (4): SmsWalletController, JsonResponse, Request, User
+Cohesion: 0.19
+Nodes (7): SmsWalletController, SmsSettingsRepository, SmsSettings, JsonResponse, Request, User, ManagerRegistry
### Community 65 - "Community 65"
Cohesion: 0.08
Nodes (24): 2. کاربر (User), 4. 🔵 `POST` verify code, 5. 🔵 `POST` send code, 6. 🔵 `POST` register, 7. 🔴 `DELETE` delete user, 8. 🟡 `PATCH` patch, 9. 🟢 `GET` list secretary, Request Body (+16 more)
-### Community 66 - "Community 66"
-Cohesion: 0.06
-Nodes (6): ClinicStaff, SmsWallet, AppLog, LogPruneService, AppointmentExpiryService, self
-
### Community 67 - "Community 67"
-Cohesion: 0.08
-Nodes (7): FinancialBreakdown, Invoice, Collection, InvoiceItem, self, Payment, User
+Cohesion: 0.11
+Nodes (4): Invoice, Collection, InvoiceItem, self
### Community 68 - "Community 68"
Cohesion: 0.12
@@ -1096,10 +1103,6 @@ Nodes (3): SubscriptionPlan, Collection, self
Cohesion: 0.09
Nodes (23): dependencies, @ckeditor/ckeditor5-build-classic, @ckeditor/ckeditor5-react, @fontsource/vazirmatn, @heroicons/react, @hookform/resolvers, jalaali-js, leaflet (+15 more)
-### Community 82 - "Community 82"
-Cohesion: 0.07
-Nodes (8): CategoryImportTest, Connection, RepositoryClassMappingTest, KernelTestCase, DbLogger, CategoryImporter, DbLoggerTest, Stringable
-
### Community 83 - "Community 83"
Cohesion: 0.09
Nodes (21): Backend, CSS / UI, Frontend, روند اجرای هر قابلیت, قبل از شروع — تحلیل پرامپت و ساخت Todo, قوانین اجرا (اجباری — هیچ استثنایی ندارد), قوانین خاص این پروژه, مثال اجرا (+13 more)
@@ -1113,8 +1116,8 @@ Cohesion: 0.07
Nodes (30): devDependencies, @babel/core, @babel/preset-env, @babel/preset-react, @babel/preset-typescript, core-js, @csstools/postcss-oklab-function, @hotwired/stimulus (+22 more)
### Community 86 - "Community 86"
-Cohesion: 0.05
-Nodes (17): AppointmentExpiryServiceTest, DateOverrideOwnershipTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, CaptchaFlowTest, ServiceItemDeleteCleanupTest, ServiceItemStaffOwnershipTest (+9 more)
+Cohesion: 0.06
+Nodes (16): AppointmentExpiryServiceTest, LowTierFixesTest, SendCodeMobileRateLimitTest, ClaimsListPaginationTest, CaptchaFlowTest, ServiceItemStaffOwnershipTest, EntityManagerInterface, KernelBrowser (+8 more)
### Community 87 - "Community 87"
Cohesion: 0.10
@@ -1201,8 +1204,8 @@ Cohesion: 0.33
Nodes (6): AppointmentController, Appointment, Doctor, JsonResponse, Request, User
### Community 108 - "Community 108"
-Cohesion: 0.14
-Nodes (9): CaptchaController, BaseController, CategoryController, SiteContextController, JsonResponse, JsonResponse, Request, JsonResponse (+1 more)
+Cohesion: 0.11
+Nodes (13): CaptchaController, BaseController, CategoryController, DoctorImportController, SiteContextController, JsonResponse, JsonResponse, Request (+5 more)
### Community 109 - "Community 109"
Cohesion: 0.29
@@ -1397,8 +1400,8 @@ Cohesion: 0.12
Nodes (15): Endpoint ها, GET /api/v1/payment/{uuid}, POST /api/v1/payment, POST /api/v1/payment/callback/mellat, Strategy Pattern برای درگاهها, Subscription Payment — POST /api/v1/subscription-payment, ⚠ امنیت: IP Whitelist برای Callback, ⚠ امنیت: جلوگیری از Open Redirect (+7 more)
### Community 160 - "Community 160"
-Cohesion: 0.09
-Nodes (21): Appointment Settings API, Available Locations, Date Overrides, DELETE `/api/v1/appointment-settings/date-override/{uuid}`, Errors, Errors, Errors, `GET /api/v1/appointment-settings/available-locations/{doctorUuid}` (+13 more)
+Cohesion: 0.13
+Nodes (15): Date Overrides, DELETE `/api/v1/appointment-settings/date-override/{uuid}`, Errors, Errors, GET `/api/v1/appointment-settings/date-override/list/{doctorUuid}`, GET `/api/v1/appointment-settings/date-override/{uuid}`, PATCH `/api/v1/appointment-settings/date-override/{uuid}`, POST `/api/v1/appointment-settings/date-override` (+7 more)
### Community 161 - "Community 161"
Cohesion: 0.24
@@ -1409,8 +1412,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
@@ -1433,8 +1436,8 @@ Cohesion: 0.10
Nodes (20): api.ir (استعلام هویت — Shahkar / IbanMatch), اتصال به دیتابیسهای مستقل (الزامی), اسرار (الزامی — قبل از اولین دیپلوی), امنیت و منابع, بررسی سلامت, دامنهها و CORS, دیپلویهای بعدی, راهنمای دیپلوی ClinicPro (Coolify + Docker Compose) (+12 more)
### Community 169 - "Community 169"
-Cohesion: 0.13
-Nodes (7): EntityInsurancePricing, EntityInsurancePricingRepository, TenantServiceCoverageRepository, TenantInsuranceCleanupService, ManagerRegistry, ManagerRegistry, TenantServiceCoverage
+Cohesion: 0.15
+Nodes (5): EntityInsurancePricing, TenantInsuranceCleanupTest, EntityInsurancePricingRepository, TenantInsuranceCleanupService, ManagerRegistry
### Community 170 - "Community 170"
Cohesion: 0.13
@@ -1553,8 +1556,8 @@ Cohesion: 0.14
Nodes (13): Endpoint ها, PATCH /api/v1/secretary/{uuid}, POST /api/v1/secretary, تسک ۱۴: ماژول منشی, توضیح, زمان تخمینی, ساختار JSON, سیستم مجوزها — Resource-Based Permissions (مقیاسپذیر) (+5 more)
### Community 201 - "Community 201"
-Cohesion: 0.17
-Nodes (12): Admin API, Clinic Invitation Management, Dashboard, GET `/api/v1/admin/dashboard/charts`, GET `/api/v1/admin/dashboard/recent`, GET `/api/v1/admin/dashboard/stats`, GET /api/v1/admin/settings, PATCH /api/v1/admin/settings (+4 more)
+Cohesion: 0.12
+Nodes (16): Admin API, Clinic Invitation Management, Dashboard, GET `/api/v1/admin/dashboard/charts`, GET `/api/v1/admin/dashboard/recent`, GET `/api/v1/admin/dashboard/stats`, GET `/api/v1/admin/pre-registrations`, GET /api/v1/admin/settings (+8 more)
### Community 202 - "Community 202"
Cohesion: 0.15
@@ -1569,8 +1572,8 @@ Cohesion: 0.21
Nodes (6): AuthenticationException, ExceptionSubscriber, SecurityHeadersSubscriber, EventSubscriberInterface, ExceptionEvent, ResponseEvent
### Community 205 - "Community 205"
-Cohesion: 0.06
-Nodes (23): Command, CancelExpiredAppointmentsCommand, CreateAdminCommand, PruneLogsCommand, SeedCategoriesCommand, SeedDemoDataCommand, SeedSmsMessageTemplatesCommand, SystemOwnerCommand (+15 more)
+Cohesion: 0.21
+Nodes (4): SeedDemoDataCommand, InputInterface, OutputInterface, SymfonyStyle
### Community 206 - "Community 206"
Cohesion: 0.08
@@ -1633,8 +1636,8 @@ Cohesion: 0.23
Nodes (5): PaymentRepository, Appointment, ManagerRegistry, Payment, User
### Community 225 - "Community 225"
-Cohesion: 0.05
-Nodes (36): formatDate(), formatDateTime(), toDate(), ALL_STATUSES, AppointmentDetailPage(), timeOf(), Claim, ClaimItem (+28 more)
+Cohesion: 0.13
+Nodes (12): AdminUserDetail, AVATAR_COLORS, EditForm, editSchema, GENDER_LABELS, getPrimaryRole(), MARITAL_LABELS, MEDICAL_SECTIONS (+4 more)
### Community 226 - "Community 226"
Cohesion: 0.15
@@ -1753,8 +1756,8 @@ 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.17
-Nodes (11): `200 OK` (بهروزرسانی شد), `200 OK` (رد بهدلیل تصاحبشده), `201 Created` (ساخته شد), `422` (اعتبارسنجی), Doctor Import (IRIMC) API, idempotency, Request, Response (+3 more)
+Cohesion: 0.12
+Nodes (16): `200 OK` (بهروزرسانی شد), `200 OK` (رد بهدلیل تصاحبشده), `201 Created` (ساخته شد), `422` (اعتبارسنجی), backfill نقش جانشینهای قدیمی, Doctor Import (IRIMC) API, idempotency, Request (+8 more)
### Community 258 - "Community 258"
Cohesion: 0.15
@@ -1785,8 +1788,8 @@ Cohesion: 0.30
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
@@ -1825,8 +1828,8 @@ Cohesion: 0.17
Nodes (5): Authentication, ClinicPro — API Documentation Index, Error Code Reference, Modules, Standard Response Envelope
### Community 275 - "Community 275"
-Cohesion: 0.19
-Nodes (5): MellatGatewayTest, ErrorCodesTest, KavehNegarProviderTest, TestCase, KavehNegarProvider
+Cohesion: 0.17
+Nodes (6): MellatGateway, MellatGatewayTest, ErrorCodesTest, KavehNegarProviderTest, TestCase, KavehNegarProvider
### Community 276 - "Community 276"
Cohesion: 0.20
@@ -1897,12 +1900,12 @@ Cohesion: 0.20
Nodes (9): AdminApiController — dashboardCharts با بازه زمانی, DashboardController — اضافه کردن from/to, date range selector component:, تغییر Backend, تغییر Frontend — DashboardPage.tsx, فایلهایی که تغییر میکنند, معماری — تسک ۱۶: داشبورد هوشمند, نصب dependency: (+1 more)
### Community 294 - "Community 294"
-Cohesion: 0.30
+Cohesion: 0.29
Nodes (6): AbstractAuthenticator, Passport, PasswordAuthenticator, Request, Response, TokenInterface
### Community 295 - "Community 295"
-Cohesion: 0.29
-Nodes (5): AbstractController, AdminController, HomeController, Response, Response
+Cohesion: 0.20
+Nodes (8): AbstractController, AdminController, HomeController, SeoController, Response, Response, Request, Response
### Community 296 - "Community 296"
Cohesion: 0.22
@@ -1925,8 +1928,8 @@ Cohesion: 0.42
Nodes (3): PreRegistrationController, JsonResponse, Request
### Community 301 - "Community 301"
-Cohesion: 0.05
-Nodes (41): PaginatedResponse, STATUS_FILTERS, AddForm, addSchema, ClinicsPage(), HUES_LIST, FILTERS, Breakdown (+33 more)
+Cohesion: 0.04
+Nodes (47): PaginatedResponse, STATUS_FILTERS, AddForm, addSchema, ClinicsPage(), HUES_LIST, FILTERS, Breakdown (+39 more)
### Community 302 - "Community 302"
Cohesion: 0.12
@@ -1937,8 +1940,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.22
-Nodes (9): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 33. 🔵 `POST` image_clinic, 6. کلینیک (Clinic), هدرهای اضافی, پارامترهای Query, پاسخها, پاسخها (+1 more)
+Cohesion: 0.05
+Nodes (42): 29. 🟢 `GET` clinic list 🆕, 30. 🟢 `GET` get 🆕, 33. 🔵 `POST` image_clinic, 34. 🔵 `POST` image logo, 36. 🟢 `GET` get my rate, 37. 🔵 `POST` post, 39. 🟡 `PATCH` Comment confirmation, 40. 🔵 `POST` post (+34 more)
### Community 306 - "Community 306"
Cohesion: 0.07
@@ -2037,8 +2040,8 @@ Cohesion: 0.22
Nodes (8): Query های جدید, بیماران منحصربهفرد در بازه, درآمد بر اساس روز (از patient_sessions), فروش اشتراک بر اساس پنل (admin), نوبتها بر اساس روز (admin chart), نکات مهم, هیچ migration لازم نیست, پایگاه داده — تسک ۱۶: داشبورد هوشمند
### Community 333 - "Community 333"
-Cohesion: 0.25
-Nodes (7): DELETE `/api/v1/clinic-pro/doctor-address/{id}`, Doctor API, Errors, GET `/api/v1/doctors`, Query Parameters, Response `200`, Response `200`
+Cohesion: 0.05
+Nodes (39): DELETE `/api/v1/clinic-pro/doctor-address/{id}`, DELETE `/api/v1/doctor/{uuid}`, Doctor API, Errors, Errors, Errors, Errors, Errors (+31 more)
### Community 334 - "Community 334"
Cohesion: 0.25
@@ -2061,8 +2064,8 @@ Cohesion: 0.39
Nodes (5): JsonContains, FunctionNode, Node, Parser, SqlWalker
### Community 340 - "Community 340"
-Cohesion: 0.25
-Nodes (8): ثبتنام دکتر — از طریق نماینده, ثبتنام دکتر — از طریق کلینیک, ثبتنام دکتر — مستقل, ۱. معرفی محصول, ۱.۱ نقشهای سیستم, ۱.۲ فلوهای عملیاتی اصلی, ۱.۳ پلنهای اشتراک, ۱.۴ سیستم پیامک
+Cohesion: 0.04
+Nodes (38): Claim, ClaimItem, DebtRow, InsuranceOption, KIND_LABEL, STATUS_FILTERS, STATUS_META, DoctorClaim (+30 more)
### Community 341 - "Community 341"
Cohesion: 0.12
@@ -2109,8 +2112,8 @@ Cohesion: 0.11
Nodes (18): `Appointment.php`, `PaymentController::pay` (نوبت را اصلاً چک نمیکند), `PaymentController::startOrderPayment` (فقط status، بدون چک زمان), `renderPaymentResult` labels (برچسب `expired` ندارد), الگوی موجود انقضا (`AppointmentExpiryService`) — برای مرجع, زمینه, فایلهای مرتبط, مشکل / هدف (+10 more)
### Community 352 - "Community 352"
-Cohesion: 0.25
-Nodes (8): ۲.۲ انواع دستهبندی (Category Types), ۲.۲.۱ تگ (Tag), ۲.۲.۲ استان (State), ۲.۲.۳ شهر (City), ۲.۲.۴ بیمه پایه (Basic Insurance), ۲.۲.۵ بیمه مکمل (Supplementary Insurance), ۲.۲.۶ تخصص دکتر (Doctor Specialty), ۲.۲.۷ خدمات دکتر (Doctor Services)
+Cohesion: 0.07
+Nodes (27): فرضیات صریح (فقط جایی که اطلاعات وجود نداشت), فیچر کامل ایمپورت پزشکان نظام پزشکی (IRIMC): ایمپورت، تصاحب پروفایل، کرالر State-Based, پروژهها و برنچ, ۱. هدف فیچر, ۱۰. معیار پذیرش (Definition of Done), ۲. تحلیل معماری موجود — حقایق تأییدشده (دوباره کشف نکن، دوباره نساز), ۲.۱ آنچه از قبل پیاده شده و کار میکند, ۲.۲ واگراییهای سند-با-کد که این پرامپت حل میکند (تصمیمهای معماری مستند) (+19 more)
### Community 354 - "Community 354"
Cohesion: 0.36
@@ -2181,8 +2184,8 @@ Cohesion: 0.29
Nodes (7): Authentication, Authorization, Input Validation, Logging Security, Rate Limiting, Secrets Management, ۷. تحلیل امنیت
### Community 371 - "Community 371"
-Cohesion: 0.15
-Nodes (6): UniqueConstraintsTest, FinancialBreakdown, FinancialBreakdownRepository, FinancialBreakdownIntegrityTest, ManagerRegistry, Payment
+Cohesion: 0.13
+Nodes (6): DateOverrideOwnershipTest, UniqueConstraintsTest, DateOverride, DateOverrideRepository, Doctor, ManagerRegistry
### Community 372 - "Community 372"
Cohesion: 0.11
@@ -2286,7 +2289,7 @@ Nodes (7): initiate(), refund(), reverse(), verify(), PaymentInitResult, Payment
### Community 399 - "Community 399"
Cohesion: 0.23
-Nodes (5): AbstractMigration, Schema, Version20260609130407, Schema, Version20260628133044
+Nodes (5): AbstractMigration, Schema, Version20260609130407, Schema, Version20260610175105
### Community 401 - "Community 401"
Cohesion: 0.12
@@ -2297,8 +2300,8 @@ Cohesion: 0.11
Nodes (17): بازطراحی معماری پرداخت — سرویسمحور، امن، توسعهپذیر (Backend), تست دستی (ddev، در حالت `payment_test_mode=1`), خروجی نهایی (طبق spec — در گزارش اجرا ارائه شود), زمینه, فایلهای مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی (+9 more)
### Community 407 - "Community 407"
-Cohesion: 0.16
-Nodes (11): MessageBusInterface, MockObject, SmsService, SmsServiceLookupOnlyTest, SmsLogRepository, SmsMessageTemplateRepository, SmsService, SmsTextResolver (+3 more)
+Cohesion: 0.27
+Nodes (8): MessageBusInterface, MockObject, SmsServiceLookupOnlyTest, SmsLogRepository, SmsMessageTemplateRepository, SmsService, SmsTextResolver, KavehNegarProvider
### Community 414 - "Community 414"
Cohesion: 0.10
@@ -2308,6 +2311,10 @@ Nodes (20): edge cases, خلاصهٔ خطاها و اولویت, راهحل,
Cohesion: 0.17
Nodes (11): دیپلوی ClinicPro روی Coolify (Docker Compose), رفع اشکال, مراحل دیپلوی, معماری دیپلوی, نکات عملیاتی, چند دامنه فرانتاند (مهم), ۱. ساخت Resource در Coolify, ۲. اختصاص دامنه (+3 more)
+### Community 422 - "Community 422"
+Cohesion: 0.12
+Nodes (15): راهحل, راهحل, راهحل, رفع زوم نقشه در افزودن آدرس + کپچا و موبایل در claim + حذف پروفایل توسط مالک, ریشهها, زمینه, فایلهای مرتبط, نکات مهم (+7 more)
+
### Community 424 - "Community 424"
Cohesion: 0.33
Nodes (5): SecretaryController, DoctorSecretary, JsonResponse, Request, User
@@ -2325,8 +2332,8 @@ Cohesion: 0.35
Nodes (5): PatientController, JsonResponse, PatientSession, Request, User
### Community 435 - "Community 435"
-Cohesion: 0.33
-Nodes (4): BlogController, JsonResponse, Request, User
+Cohesion: 0.18
+Nodes (10): Command, CancelExpiredAppointmentsCommand, PruneLogsCommand, SeedSmsMessageTemplatesCommand, InputInterface, OutputInterface, InputInterface, OutputInterface (+2 more)
### Community 439 - "Community 439"
Cohesion: 0.17
@@ -2336,13 +2343,9 @@ Nodes (11): زمینه, صفحه Twig دعوت پزشک + کوتاهکردن
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 451 - "Community 451"
-Cohesion: 0.08
-Nodes (22): Contract, InsuranceOption, KIND_LABEL, ChargeForm, chargeSchema, EMPTY_LOGS, POST_VISIT_VARS, REMINDER_HOUR_OPTIONS (+14 more)
-
### Community 452 - "Community 452"
-Cohesion: 0.33
-Nodes (6): GET /api/v1/sms/balance — موجودی حساب پیامک, POST /api/v1/sms/queue — افزودن به صف, ۴. سیستم حساب و صف پیامک, ۴.۱ حساب پیامک (SMS Account), ۴.۲ صف پیامک (SMS Queue), ۴.۳ API پیامک
+Cohesion: 0.15
+Nodes (3): DoctorClaimRequest, Doctor, User
### Community 456 - "Community 456"
Cohesion: 0.15
@@ -2433,20 +2436,16 @@ Cohesion: 0.36
Nodes (5): StaffController, ClinicStaff, JsonResponse, Request, User
### Community 481 - "Community 481"
-Cohesion: 0.38
-Nodes (5): Rate, RateRepository, Doctor, ManagerRegistry, User
+Cohesion: 0.17
+Nodes (11): رفع نام دوتایی «دکتر» در ایمپورت IRIMC + دستور پاکسازی کامل پزشکان, زمینه, فایلهای مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+3 more)
### Community 482 - "Community 482"
Cohesion: 0.43
Nodes (5): BeforeInstallPromptEvent, usePwaInstall(), PwaInstallBanner(), detectIOS(), PwaLoginCard()
### Community 483 - "Community 483"
-Cohesion: 0.43
-Nodes (3): InvoiceRepository, Invoice, ManagerRegistry
-
-### Community 486 - "Community 486"
-Cohesion: 0.40
-Nodes (5): ۲.۸ تنظیمات نوبت (Appointment Settings), ۲.۸.۱ برنامه هفتگی (Weekly Schedule), ۲.۸.۲ تعطیلات (Holidays), ۲.۸.۳ لغو تعطیل (Date Override), ۲.۸.۴ الگوریتم محاسبه اسلاتهای خالی
+Cohesion: 0.33
+Nodes (5): Like, LikeRepository, Comment, ManagerRegistry, User
### Community 487 - "Community 487"
Cohesion: 0.40
@@ -2457,13 +2456,17 @@ 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 490 - "Community 490"
-Cohesion: 0.36
-Nodes (3): DoctorServiceController, JsonResponse, Request
+Cohesion: 0.38
+Nodes (5): Rate, RateRepository, Doctor, ManagerRegistry, User
### Community 491 - "Community 491"
Cohesion: 0.12
Nodes (15): `Modal.tsx` (بدون Portal), `PersianCalendar.tsx` (buttonها بدون `type`) — نمونهها, باگ ۱ — علت, باگ ۲ — علت, رفع دو باگ Modal و تقویم شمسی در پنل ادمین, زمینه, فایلهای مرتبط, مشکل / هدف (+7 more)
+### Community 492 - "Community 492"
+Cohesion: 0.18
+Nodes (4): KavehNegarProvider, SmsService, SendSmsMessage, SmsProviderInterface
+
### 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)
@@ -2476,10 +2479,6 @@ Nodes (3): InvoiceItemRepository, InvoiceItem, ManagerRegistry
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.40
-Nodes (5): Errors, PATCH `/api/v1/clinic-pro/doctor-address/{id}`, Path Parameters, Request Body, Response `200`
-
### Community 497 - "Community 497"
Cohesion: 0.53
Nodes (3): SlotUniquenessTest, Appointment, Doctor
@@ -2581,24 +2580,20 @@ Cohesion: 0.15
Nodes (12): ارسال پیامک OTP فقط از طریق Kavenegar VerifyLookup (پترن), اسپک Kavenegar VerifyLookup (از داکیومنت رسمی), زمینه, فایلهای مرتبط, نکات مهم, وضعیت فعلی, وظایف, پروژه (+4 more)
### Community 526 - "Community 526"
-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 تنظیمات نوبت
+Cohesion: 0.13
+Nodes (14): Doctor Profile Claim API (تصاحب پروفایل پزشک ایمپورتشده), env های مرتبط, Errors, GET `/api/v1/admin/doctor-claims`, GET `/api/v1/doctor/{uuid}/claim-info`, POST `/api/v1/admin/doctors/{uuid}/transfer`, POST `/api/v1/doctor/{uuid}/claim`, Request (+6 more)
### Community 528 - "Community 528"
-Cohesion: 0.50
-Nodes (4): GET /api/v1/categories/cities — شهرها, GET /api/v1/categories/states — استانها, Task-08: API دستهبندیها, سایر Endpoint های دستهبندی — الزامی
+Cohesion: 0.17
+Nodes (12): buildKavenegarPattern(), KavenegarGuide(), SmsPage(), STATUS_LOG_META, Tab, TAG_FILTER_OPTIONS, TAG_LABELS, TemplateFormData (+4 more)
### Community 529 - "Community 529"
Cohesion: 0.50
Nodes (4): Errors, POST `/oauth/token/refresh`, Request Body, Response `200`
-### Community 530 - "Community 530"
-Cohesion: 0.33
-Nodes (3): GatewayFactory, MellatGateway, SepGateway
-
### Community 531 - "Community 531"
-Cohesion: 0.50
-Nodes (4): ۲.۱۳ نظرات، لایک و امتیازدهی, ۲.۱۳.۱ نظر (Comment), ۲.۱۳.۲ لایک (Like), ۲.۱۳.۳ امتیاز (Rate)
+Cohesion: 0.42
+Nodes (4): DoctorClaimRequest, DoctorClaimService, Doctor, User
### Community 532 - "Community 532"
Cohesion: 0.33
@@ -2625,8 +2620,8 @@ Cohesion: 0.22
Nodes (3): AppException, SlotTakenException, RuntimeException
### Community 543 - "Community 543"
-Cohesion: 0.21
-Nodes (6): HealthController, EntityManagerInterface, CommissionService, Payment, Representation, JsonResponse
+Cohesion: 0.25
+Nodes (8): ثبتنام دکتر — از طریق نماینده, ثبتنام دکتر — از طریق کلینیک, ثبتنام دکتر — مستقل, ۱. معرفی محصول, ۱.۱ نقشهای سیستم, ۱.۲ فلوهای عملیاتی اصلی, ۱.۳ پلنهای اشتراک, ۱.۴ سیستم پیامک
### Community 544 - "Community 544"
Cohesion: 0.15
@@ -2733,8 +2728,8 @@ Cohesion: 0.40
Nodes (5): Errors, Notes, POST `/api/v1/notification-mobile/request-otp`, Request Body, Response `200`
### Community 576 - "Community 576"
-Cohesion: 0.43
-Nodes (3): CategoryImportController, JsonResponse, Request
+Cohesion: 0.25
+Nodes (8): ۲.۲ انواع دستهبندی (Category Types), ۲.۲.۱ تگ (Tag), ۲.۲.۲ استان (State), ۲.۲.۳ شهر (City), ۲.۲.۴ بیمه پایه (Basic Insurance), ۲.۲.۵ بیمه مکمل (Supplementary Insurance), ۲.۲.۶ تخصص دکتر (Doctor Specialty), ۲.۲.۷ خدمات دکتر (Doctor Services)
### Community 577 - "Community 577"
Cohesion: 0.43
@@ -2781,8 +2776,8 @@ Cohesion: 0.43
Nodes (3): SmsLogRepository, SmsLog, ManagerRegistry
### Community 596 - "Community 596"
-Cohesion: 0.57
-Nodes (3): SeoController, Request, Response
+Cohesion: 0.29
+Nodes (3): FinancialBreakdown, Payment, User
### Community 597 - "Community 597"
Cohesion: 0.29
@@ -2804,6 +2799,10 @@ Nodes (3): ماژولهای شناساییشده در PRD, موارد پو
Cohesion: 0.67
Nodes (3): نقاط ضعف, نقاط قوت, ۶. تحلیل API Design
+### Community 606 - "Community 606"
+Cohesion: 0.18
+Nodes (10): ایمپورت پزشکان نظام پزشکی به کلینیکپرو و مدیریت مالکیت پروفایل, ۱. مسئله و محدودیتها, ۲. مدل مالکیت پروفایل, ۳. راهحل انتخابشده و دلیل آن, ۴. تغییرات بکاند (clinicpro), ۵. جریان کرالر (pipeline.py), ۶. نحوهی اجرا, ۷. نکتهی مهم: captcha در لاگین (+2 more)
+
### Community 607 - "Community 607"
Cohesion: 0.34
Nodes (5): RepresentationController, JsonResponse, Representation, Request, User
@@ -2812,6 +2811,10 @@ Nodes (5): RepresentationController, JsonResponse, Representation, Request, User
Cohesion: 0.67
Nodes (3): بکاند, فرانتاند, وضعیت فعلی کد (مهم — قبل از تغییر بخوان)
+### Community 618 - "Community 618"
+Cohesion: 0.16
+Nodes (5): ServiceItemDeleteCleanupTest, ServiceCoverageNPlusOneTest, TenantServiceCoverageRepository, ManagerRegistry, TenantServiceCoverage
+
### Community 625 - "Community 625"
Cohesion: 0.40
Nodes (5): 31. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخها
@@ -2821,8 +2824,8 @@ Cohesion: 0.23
Nodes (7): Money, BillingCalculator, InvoiceService, CoverageRule, ShareBreakdown, Invoice, PatientSession
### Community 631 - "Community 631"
-Cohesion: 0.48
-Nodes (3): DoctorInsuranceRepository, DoctorInsurance, ManagerRegistry
+Cohesion: 0.39
+Nodes (4): FinancialBreakdown, FinancialBreakdownRepository, ManagerRegistry, Payment
### Community 632 - "Community 632"
Cohesion: 0.40
@@ -2917,8 +2920,8 @@ Cohesion: 0.40
Nodes (5): addMinutes(), calcSlotCount(), hasOverlap(), parseMinutes(), SessionEditor()
### Community 677 - "Community 677"
-Cohesion: 0.40
-Nodes (5): 37. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخها
+Cohesion: 0.29
+Nodes (6): Appointment Settings API, Available Locations, Errors, `GET /api/v1/appointment-settings/available-locations/{doctorUuid}`, Response `200`, Slot Calculation Logic (Reference)
### Community 678 - "Community 678"
Cohesion: 0.53
@@ -2937,25 +2940,21 @@ Cohesion: 0.40
Nodes (5): GET `/api/v1/admin/comments`, GET `/api/v1/admin/rates`, Query Parameters, Query Parameters, Rating & Comment Management
### Community 687 - "Community 687"
-Cohesion: 0.50
-Nodes (4): DELETE `/api/v1/doctor/{uuid}`, Errors, Path Parameters, Response `200`
+Cohesion: 0.38
+Nodes (3): PurgeDoctorsCommand, InputInterface, OutputInterface
### Community 689 - "Community 689"
Cohesion: 0.40
Nodes (5): 41. 🟡 `PATCH` patch, Request Body, مثال Request, هدرهای اضافی, پاسخها
### Community 690 - "Community 690"
-Cohesion: 0.50
-Nodes (4): Errors, POST `/api/v1/doctor`, Request Body (`application/json`), Response `201`
+Cohesion: 0.43
+Nodes (3): CategoryImportController, JsonResponse, Request
### Community 692 - "Community 692"
Cohesion: 0.50
Nodes (4): GET `/api/v1/admin/representations`, Query Parameters, Representation Management, Response `200`
-### Community 693 - "Community 693"
-Cohesion: 0.50
-Nodes (4): Errors, GET `/api/v1/doctor/{uuid}`, Path Parameters, Response `200`
-
### Community 694 - "Community 694"
Cohesion: 0.50
Nodes (4): Error Codes, POST `/api/v1/user/reset-password`, Request Body, Response `200`
@@ -2973,8 +2972,8 @@ Cohesion: 0.17
Nodes (11): رفع خطاهای ارسال پیامک کاوهنگار در سرور prod (431 + Idle timeout), زمینه, فایلهای مرتبط, مشکل / هدف, نکات مهم, وضعیت فعلی, وظایف, پروژه (+3 more)
### Community 700 - "Community 700"
-Cohesion: 0.50
-Nodes (4): Errors, POST `/file/upload/clinic_pro/doctor/field_image`, Request, Response `200`
+Cohesion: 0.53
+Nodes (3): SessionServiceRepository, ManagerRegistry, SessionService
### Community 701 - "Community 701"
Cohesion: 0.17
@@ -2984,13 +2983,9 @@ Nodes (11): رفع خطای `Class "SoapClient" not found` در پرداخت م
Cohesion: 0.50
Nodes (4): Errors, POST `/api/v1/user/send-code`, Request Body, Response `200`
-### Community 705 - "Community 705"
-Cohesion: 0.50
-Nodes (4): Errors, POST `/api/v1/clinic-pro/doctor-address`, Request Body, Response `201`
-
### Community 706 - "Community 706"
-Cohesion: 0.50
-Nodes (4): Errors, Path Parameters, POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`, Response `201`
+Cohesion: 0.40
+Nodes (5): Errors, GET `/api/v1/admin/clinic/{uuid}/invitations`, Path Parameters, Query Parameters, Response `200`
### Community 707 - "Community 707"
Cohesion: 0.50
@@ -3004,22 +2999,6 @@ Nodes (4): Errors, POST `/api/v1/user/login`, Request Body, Response `200`
Cohesion: 0.50
Nodes (4): Errors, POST `/oauth/token`, Request Body, Response `200`
-### Community 712 - "Community 712"
-Cohesion: 0.67
-Nodes (3): GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`, Path Parameters, Response `200`
-
-### Community 713 - "Community 713"
-Cohesion: 0.50
-Nodes (4): 39. 🟡 `PATCH` Comment confirmation, مثال Request, هدرهای اضافی, پاسخها
-
-### Community 714 - "Community 714"
-Cohesion: 0.50
-Nodes (4): 45. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخها
-
-### Community 715 - "Community 715"
-Cohesion: 0.67
-Nodes (3): POST `/api/v1/admin/sms/template/{uuid}/approve`, Request Body (`application/json`), Response `200`
-
### Community 716 - "Community 716"
Cohesion: 0.50
Nodes (4): Errors, GET `/oauth/userinfo`, Headers, Response `200`
@@ -3064,14 +3043,6 @@ Nodes (4): Errors, GET `/api/v1/representation/doctors`, Query Parameters, Respo
Cohesion: 0.50
Nodes (4): 38. 🟢 `GET` Unapproved comments, هدرهای اضافی, پارامترهای Query, پاسخها
-### Community 728 - "Community 728"
-Cohesion: 0.50
-Nodes (4): 40. 🔵 `POST` post, مثال Request, هدرهای اضافی, پاسخها
-
-### Community 729 - "Community 729"
-Cohesion: 0.50
-Nodes (4): 44. 🟢 `GET` list comment, هدرهای اضافی, پارامترهای Query, پاسخها
-
### Community 730 - "Community 730"
Cohesion: 0.50
Nodes (4): 46. 🟡 `PATCH` patch, مثال Request, هدرهای اضافی, پاسخها
@@ -3100,60 +3071,88 @@ Nodes (3): POST `/api/v1/admin/insurance/{id}/upload-logo`, Request, Response `2
Cohesion: 0.67
Nodes (3): GET `/api/v1/representation/{uuid}/dashboard/yearly`, Query Parameters, Response `200`
-### Community 737 - "Community 737"
-Cohesion: 0.67
-Nodes (3): 34. 🔵 `POST` image logo, هدرهای اضافی, پاسخها
-
### Community 738 - "Community 738"
Cohesion: 0.50
Nodes (4): Errors, GET `/api/v1/representation/{uuid}`, Path Parameters, Response `200`
### Community 739 - "Community 739"
-Cohesion: 0.67
-Nodes (3): 36. 🟢 `GET` get my rate, هدرهای اضافی, پاسخها
+Cohesion: 0.38
+Nodes (4): DoctorClaimController, JsonResponse, Request, User
-### Community 740 - "Community 740"
-Cohesion: 0.67
-Nodes (3): 42. 🔴 `DELETE` delete, هدرهای اضافی, پاسخها
+### Community 744 - "Community 744"
+Cohesion: 0.36
+Nodes (4): DoctorImportResult, DoctorImportService, Collection, User
-### Community 741 - "Community 741"
-Cohesion: 0.67
-Nodes (3): 43. 🟢 `GET` get, هدرهای اضافی, پاسخها
+### Community 748 - "Community 748"
+Cohesion: 0.38
+Nodes (3): BackfillSurrogateRoleCommand, InputInterface, OutputInterface
-### Community 743 - "Community 743"
+### Community 750 - "Community 750"
+Cohesion: 0.38
+Nodes (3): CreateAdminCommand, InputInterface, OutputInterface
+
+### Community 753 - "Community 753"
+Cohesion: 0.38
+Nodes (3): FixIrimcNamesCommand, InputInterface, OutputInterface
+
+### Community 757 - "Community 757"
+Cohesion: 0.38
+Nodes (3): SystemOwnerCommand, InputInterface, OutputInterface
+
+### Community 759 - "Community 759"
+Cohesion: 0.38
+Nodes (3): RepositoryClassMappingTest, KernelTestCase, DbLoggerTest
+
+### Community 761 - "Community 761"
+Cohesion: 0.47
+Nodes (3): SeedCategoriesCommand, InputInterface, OutputInterface
+
+### Community 763 - "Community 763"
+Cohesion: 0.33
+Nodes (6): GET /api/v1/sms/balance — موجودی حساب پیامک, POST /api/v1/sms/queue — افزودن به صف, ۴. سیستم حساب و صف پیامک, ۴.۱ حساب پیامک (SMS Account), ۴.۲ صف پیامک (SMS Queue), ۴.۳ API پیامک
+
+### Community 764 - "Community 764"
Cohesion: 0.53
-Nodes (3): SessionServiceRepository, ManagerRegistry, SessionService
+Nodes (3): PaymentLog, PaymentLogRepository, ManagerRegistry
-### Community 745 - "Community 745"
+### Community 766 - "Community 766"
Cohesion: 0.40
-Nodes (5): 61. 🔵 `POST` post, Request Body, مثال Request, هدرهای اضافی, پاسخها
+Nodes (5): ۲.۸ تنظیمات نوبت (Appointment Settings), ۲.۸.۱ برنامه هفتگی (Weekly Schedule), ۲.۸.۲ تعطیلات (Holidays), ۲.۸.۳ لغو تعطیل (Date Override), ۲.۸.۴ الگوریتم محاسبه اسلاتهای خالی
-### Community 746 - "Community 746"
+### Community 768 - "Community 768"
Cohesion: 0.50
-Nodes (4): GET `/api/v1/admin/pre-registrations`, POST `/api/v1/admin/pre-registrations/{uuid}/approve`, POST `/api/v1/admin/pre-registrations/{uuid}/reject`, Pre-Registration Management
+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 747 - "Community 747"
+### Community 769 - "Community 769"
Cohesion: 0.50
-Nodes (4): extra, symfony, allow-contrib, require
+Nodes (4): GET /api/v1/categories/cities — شهرها, GET /api/v1/categories/states — استانها, Task-08: API دستهبندیها, سایر Endpoint های دستهبندی — الزامی
+
+### Community 770 - "Community 770"
+Cohesion: 0.50
+Nodes (4): ۲.۱۳ نظرات، لایک و امتیازدهی, ۲.۱۳.۱ نظر (Comment), ۲.۱۳.۲ لایک (Like), ۲.۱۳.۳ امتیاز (Rate)
+
+### Community 771 - "Community 771"
+Cohesion: 0.67
+Nodes (3): POST `/api/v1/admin/sms/template/{uuid}/approve`, Request Body (`application/json`), Response `200`
## Knowledge Gaps
-- **4087 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `ImageCropModalProps`, `TenantInsurance`, `CoverageRow` (+4082 more)
+- **4157 isolated node(s):** `ALLOWED_ROLES`, `Pricing`, `ImageCropModalProps`, `TenantInsurance`, `CoverageRow` (+4152 more)
These have ≤1 connection - possible missing edges or undocumented components.
-- **146 thin communities (<3 nodes) omitted from report** — run `graphify query` to explore isolated nodes.
+- **160 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 `Altcha` connect `Community 367` to `Community 0`, `Community 485`?**
- _High betweenness centrality (0.070) - this node is a cross-community bridge._
-- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 138`, `Community 139`, `Community 14`, `Community 654`, `Community 655`, `Community 15`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 424`, `Community 300`, `Community 433`, `Community 435`, `Community 308`, `Community 59`, `Community 318`, `Community 576`, `Community 577`, `Community 64`, `Community 75`, `Community 77`, `Community 607`, `Community 480`, `Community 230`, `Community 104`, `Community 490`, `Community 107`, `Community 109`, `Community 499`, `Community 380`, `Community 121`, `Community 122`, `Community 252`?**
- _High betweenness centrality (0.044) - this node is a cross-community bridge._
-- **Why does `ApiTestCase` connect `Community 86` to `Community 640`, `Community 397`, `Community 534`, `Community 535`, `Community 541`, `Community 543`, `Community 562`, `Community 565`, `Community 574`, `Community 575`, `Community 594`, `Community 82`, `Community 609`, `Community 484`, `Community 744`, `Community 618`, `Community 748`, `Community 497`, `Community 371`?**
- _High betweenness centrality (0.030) - this node is a cross-community bridge._
+ _High betweenness centrality (0.065) - this node is a cross-community bridge._
+- **Why does `BaseController` connect `Community 108` to `Community 6`, `Community 7`, `Community 138`, `Community 139`, `Community 14`, `Community 654`, `Community 655`, `Community 15`, `Community 20`, `Community 22`, `Community 26`, `Community 164`, `Community 295`, `Community 424`, `Community 300`, `Community 433`, `Community 690`, `Community 308`, `Community 58`, `Community 59`, `Community 318`, `Community 64`, `Community 577`, `Community 75`, `Community 77`, `Community 607`, `Community 480`, `Community 739`, `Community 230`, `Community 104`, `Community 107`, `Community 109`, `Community 499`, `Community 252`, `Community 121`, `Community 122`, `Community 380`?**
+ _High betweenness centrality (0.038) - this node is a cross-community bridge._
+- **Why does `Version20260705070546` connect `Community 646` to `Community 399`?**
+ _High betweenness centrality (0.024) - this node is a cross-community bridge._
- **What connects `ALLOWED_ROLES`, `Pricing`, `ImageCropModalProps` to the rest of the system?**
- _4087 weakly-connected nodes found - possible documentation gaps or missing edges._
+ _4157 weakly-connected nodes found - possible documentation gaps or missing edges._
- **Should `Community 0` be split into smaller, more focused modules?**
- _Cohesion score 0.048087431693989074 - nodes in this community are weakly interconnected._
+ _Cohesion score 0.05075187969924812 - 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?**
diff --git a/graphify-out/cache/ast/v0.8.44/0037895218fb8fc10ef713264da551cee07a8a3cc268927aca0d0d3e70003b94.json b/graphify-out/cache/ast/v0.8.44/0037895218fb8fc10ef713264da551cee07a8a3cc268927aca0d0d3e70003b94.json
new file mode 100644
index 00000000..2bd67214
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/0037895218fb8fc10ef713264da551cee07a8a3cc268927aca0d0d3e70003b94.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_md", "label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L1"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc \u0628\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9\u200c\u067e\u0631\u0648 \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L1"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f1_\u0645\u0633\u0626\u0644\u0647_\u0648_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627", "label": "\u06f1. \u0645\u0633\u0626\u0644\u0647 \u0648 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a\u200c\u0647\u0627", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L9"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f2_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u06f2. \u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L22"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f3_\u0631\u0627\u0647_\u062d\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u062f\u0644\u06cc\u0644_\u0622\u0646", "label": "\u06f3. \u0631\u0627\u0647\u200c\u062d\u0644 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u062f\u0644\u06cc\u0644 \u0622\u0646", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L32"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f4_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "label": "\u06f4. \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u06a9\u200c\u0627\u0646\u062f (clinicpro)", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L42"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f5_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0631\u0627\u0644\u0631_pipeline_py", "label": "\u06f5. \u062c\u0631\u06cc\u0627\u0646 \u06a9\u0631\u0627\u0644\u0631 (pipeline.py)", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L66"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f6_\u0646\u062d\u0648\u0647_\u06cc_\u0627\u062c\u0631\u0627", "label": "\u06f6. \u0646\u062d\u0648\u0647\u200c\u06cc \u0627\u062c\u0631\u0627", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L82"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f7_\u0646\u06a9\u062a\u0647_\u06cc_\u0645\u0647\u0645_captcha_\u062f\u0631_\u0644\u0627\u06af\u06cc\u0646", "label": "\u06f7. \u0646\u06a9\u062a\u0647\u200c\u06cc \u0645\u0647\u0645: captcha \u062f\u0631 \u0644\u0627\u06af\u06cc\u0646", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L110"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f8_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0633\u0627\u062e\u062a\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u06cc\u0627\u0641\u062a\u0647", "label": "\u06f8. \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0633\u0627\u062e\u062a\u0647/\u062a\u063a\u06cc\u06cc\u0631\u200c\u06cc\u0627\u0641\u062a\u0647", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L120"}, {"id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f9_\u0645\u0631\u0627\u062d\u0644_\u0628\u0639\u062f\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", "label": "\u06f9. \u0645\u0631\u0627\u062d\u0644 \u0628\u0639\u062f\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", "file_type": "document", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L134"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_md", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L1", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f1_\u0645\u0633\u0626\u0644\u0647_\u0648_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L9", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f2_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L22", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f3_\u0631\u0627\u0647_\u062d\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u062f\u0644\u06cc\u0644_\u0622\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L32", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f4_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L42", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f5_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0631\u0627\u0644\u0631_pipeline_py", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L66", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f6_\u0646\u062d\u0648\u0647_\u06cc_\u0627\u062c\u0631\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L82", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f7_\u0646\u06a9\u062a\u0647_\u06cc_\u0645\u0647\u0645_captcha_\u062f\u0631_\u0644\u0627\u06af\u06cc\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L110", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f8_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0633\u0627\u062e\u062a\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u06cc\u0627\u0641\u062a\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L120", "weight": 1.0}, {"source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f9_\u0645\u0631\u0627\u062d\u0644_\u0628\u0639\u062f\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md", "source_location": "L134", "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/02bf0d9faa621403a1f4e81f2c60384dd1ca334887d5de779e595be0633836ce.json b/graphify-out/cache/ast/v0.8.44/02bf0d9faa621403a1f4e81f2c60384dd1ca334887d5de779e595be0633836ce.json
new file mode 100644
index 00000000..eb217946
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/02bf0d9faa621403a1f4e81f2c60384dd1ca334887d5de779e595be0633836ce.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_doctor_map_claim_captcha_delete_md", "label": "doctor-map-claim-captcha-delete.md", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L1"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "\u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u062f\u0631 \u0627\u0641\u0632\u0648\u062f\u0646 \u0622\u062f\u0631\u0633 + \u06a9\u067e\u0686\u0627 \u0648 \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim + \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L1"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L3"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L8"}, {"id": "prompt_doctor_map_claim_captcha_delete_\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/doctor-map-claim-captcha-delete.md", "source_location": "L15"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u0647\u0646\u06af\u0627\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u0647\u0631 (\u0646\u06cc\u0627\u0632\u0650 \u062f\u0648\u200c\u0628\u0627\u0631 \u0627\u0646\u062a\u062e\u0627\u0628)", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L26"}, {"id": "prompt_doctor_map_claim_captcha_delete_\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/doctor-map-claim-captcha-delete.md", "source_location": "L28"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0631\u06cc\u0634\u0647_\u0647\u0627", "label": "\u0631\u06cc\u0634\u0647\u200c\u0647\u0627", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L49"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L54"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u06a9\u067e\u0686\u0627 \u0648 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L78"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_80", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L80"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_84", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L84"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f3 \u2014 \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L111"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_113", "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L113"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_124", "label": "\u0631\u0627\u0647\u200c\u062d\u0644", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L124"}, {"id": "prompt_doctor_map_claim_captcha_delete_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L149"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_doctor_map_claim_captcha_delete_md", "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L8", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L15", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L26", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628", "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u06cc\u0634\u0647_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L49", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628", "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L54", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L78", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_80", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L80", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim", "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_84", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L84", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L111", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_113", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L113", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_124", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L124", "weight": 1.0}, {"source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9", "target": "prompt_doctor_map_claim_captcha_delete_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md", "source_location": "L149", "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/038be06f3d873ea3546409d85a4bb7ac25dcf88be1b38eb524cbafd55674b3a1.json b/graphify-out/cache/ast/v0.8.44/038be06f3d873ea3546409d85a4bb7ac25dcf88be1b38eb524cbafd55674b3a1.json
new file mode 100644
index 00000000..bfa7b497
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/038be06f3d873ea3546409d85a4bb7ac25dcf88be1b38eb524cbafd55674b3a1.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportresult_php", "label": "DoctorImportResult.php", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L1"}, {"id": "service_doctorimportresult_doctorimportresult", "label": "DoctorImportResult", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L7"}, {"id": "service_doctorimportresult_doctorimportresult_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L9"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportresult_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportresult_php", "target": "service_doctorimportresult_doctorimportresult", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L7", "weight": 1.0}, {"source": "service_doctorimportresult_doctorimportresult", "target": "service_doctorimportresult_doctorimportresult_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportResult.php", "source_location": "L9", "weight": 1.0}], "raw_calls": []}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/06cc16b691e8051198421fddf881bdcc116597b6842b2d5cea2faa34c87bce58.json b/graphify-out/cache/ast/v0.8.44/06cc16b691e8051198421fddf881bdcc116597b6842b2d5cea2faa34c87bce58.json
new file mode 100644
index 00000000..e2d2cf27
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/06cc16b691e8051198421fddf881bdcc116597b6842b2d5cea2faa34c87bce58.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "label": "PasswordAuthenticator.php", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L1"}, {"id": "security_passwordauthenticator_passwordauthenticator", "label": "PasswordAuthenticator", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L23"}, {"id": "abstractauthenticator", "label": "AbstractAuthenticator", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "security_passwordauthenticator_passwordauthenticator_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L25"}, {"id": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "label": ".isTrustedServiceLogin()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L41"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L41"}, {"id": "security_passwordauthenticator_passwordauthenticator_supports", "label": ".supports()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L47"}, {"id": "security_passwordauthenticator_passwordauthenticator_authenticate", "label": ".authenticate()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L53"}, {"id": "passport", "label": "Passport", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L53"}, {"id": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "label": ".onAuthenticationSuccess()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75"}, {"id": "tokeninterface", "label": "TokenInterface", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75"}, {"id": "response", "label": "Response", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75"}, {"id": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "label": ".onAuthenticationFailure()", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111"}, {"id": "authenticationexception", "label": "AuthenticationException", "file_type": "code", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "userrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "captchaguard", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "jwttokenmanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "response", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "toomanyrequestshttpexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "ratelimiterfactory", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "tokeninterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "authenticationexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "abstractauthenticator", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "userbadge", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "passwordcredentials", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "passport", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "cacheinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_security_passwordauthenticator_php", "target": "security_passwordauthenticator_passwordauthenticator", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L23", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "abstractauthenticator", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L23", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L25", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L41", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_supports", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L47", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator_supports", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_authenticate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L53", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator_authenticate", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L53", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_authenticate", "target": "passport", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L53", "weight": 1.0, "context": "return_type"}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "target": "tokeninterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "target": "response", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L75", "weight": 1.0, "context": "return_type"}, {"source": "security_passwordauthenticator_passwordauthenticator", "target": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111", "weight": 1.0}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "target": "authenticationexception", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111", "weight": 1.0, "context": "parameter_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "target": "response", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L111", "weight": 1.0, "context": "return_type"}, {"source": "security_passwordauthenticator_passwordauthenticator_authenticate", "target": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Auth/Security/PasswordAuthenticator.php", "source_location": "L61", "weight": 1.0}], "raw_calls": [{"caller_nid": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "callee": "hash_equals", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L44", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L44", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_supports", "callee": "getPathInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L49", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_supports", "callee": "isMethod", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L50", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "create", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L55", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L55", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "isAccepted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L56", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "consume", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L56", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "assertValid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L62", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L65", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L65", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L66", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_authenticate", "callee": "findByMobile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L70", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L77", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "isStaff", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L79", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L83", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "create", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L87", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "bin2hex", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L88", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "random_bytes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L88", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "getItem", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L91", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L92", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "expiresAfter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L93", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L94", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "info", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L96", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L97", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L98", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "callee": "warning", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L113", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L114", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L115", "receiver": null}, {"caller_nid": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure", "callee": "ErrorCodes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Security/PasswordAuthenticator.php", "source_location": "L121", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/0a758a07dc85ab8b8efd8e31066b95be74b7bbbd44217cfeb58f0226d2ada045.json b/graphify-out/cache/ast/v0.8.44/0a758a07dc85ab8b8efd8e31066b95be74b7bbbd44217cfeb58f0226d2ada045.json
new file mode 100644
index 00000000..9159b416
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/0a758a07dc85ab8b8efd8e31066b95be74b7bbbd44217cfeb58f0226d2ada045.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_irimc_import_complete_md", "label": "irimc-import-complete.md", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L1"}, {"id": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "label": "\u0641\u06cc\u0686\u0631 \u06a9\u0627\u0645\u0644 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc (IRIMC): \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u060c \u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644\u060c \u06a9\u0631\u0627\u0644\u0631 State-Based", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L1"}, {"id": "prompt_irimc_import_complete_\u067e\u0631\u0648\u0698\u0647_\u0647\u0627_\u0648_\u0628\u0631\u0646\u0686", "label": "\u067e\u0631\u0648\u0698\u0647\u200c\u0647\u0627 \u0648 \u0628\u0631\u0646\u0686", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L6"}, {"id": "prompt_irimc_import_complete_\u06f1_\u0647\u062f\u0641_\u0641\u06cc\u0686\u0631", "label": "\u06f1. \u0647\u062f\u0641 \u0641\u06cc\u0686\u0631", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L22"}, {"id": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632", "label": "\u06f2. \u062a\u062d\u0644\u06cc\u0644 \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f \u2014 \u062d\u0642\u0627\u06cc\u0642 \u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u062f\u0648\u0628\u0627\u0631\u0647 \u06a9\u0634\u0641 \u0646\u06a9\u0646\u060c \u062f\u0648\u0628\u0627\u0631\u0647 \u0646\u0633\u0627\u0632)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L28"}, {"id": "prompt_irimc_import_complete_\u06f2_\u06f1_\u0622\u0646\u0686\u0647_\u0627\u0632_\u0642\u0628\u0644_\u067e\u06cc\u0627\u062f\u0647_\u0634\u062f\u0647_\u0648_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u062f", "label": "\u06f2.\u06f1 \u0622\u0646\u0686\u0647 \u0627\u0632 \u0642\u0628\u0644 \u067e\u06cc\u0627\u062f\u0647 \u0634\u062f\u0647 \u0648 \u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u062f", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L30"}, {"id": "prompt_irimc_import_complete_\u06f2_\u06f2_\u0648\u0627\u06af\u0631\u0627\u06cc\u06cc_\u0647\u0627\u06cc_\u0633\u0646\u062f_\u0628\u0627_\u06a9\u062f_\u06a9\u0647_\u0627\u06cc\u0646_\u067e\u0631\u0627\u0645\u067e\u062a_\u062d\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0633\u062a\u0646\u062f", "label": "\u06f2.\u06f2 \u0648\u0627\u06af\u0631\u0627\u06cc\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f-\u0628\u0627-\u06a9\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u067e\u0631\u0627\u0645\u067e\u062a \u062d\u0644 \u0645\u06cc\u200c\u06a9\u0646\u062f (\u062a\u0635\u0645\u06cc\u0645\u200c\u0647\u0627\u06cc \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0633\u062a\u0646\u062f)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L47"}, {"id": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "label": "\u06f3. Workstream A \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f clinicpro", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L60"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0627\u0632_\u06a9\u0646\u062a\u0631\u0644\u0631_thin_controller", "label": "\u06f3.\u06f1 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0645\u0646\u0637\u0642 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u0627\u0632 \u06a9\u0646\u062a\u0631\u0644\u0631 (thin controller)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L62"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f2_\u0646\u0642\u0634_role_unclaimed_doctor_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0646\u0634\u06cc\u0646", "label": "\u06f3.\u06f2 \u0646\u0642\u0634 `ROLE_UNCLAIMED_DOCTOR` \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u0627\u0646\u0634\u06cc\u0646", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L72"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f3_\u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc_\u06a9\u0644\u06cc\u062f_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0631\u0641\u0639_race", "label": "\u06f3.\u06f3 \u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc\u0650 \u06a9\u0644\u06cc\u062f \u0627\u06cc\u0645\u067e\u0648\u0631\u062a (\u0631\u0641\u0639 race)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L86"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f4_\u062c\u0631\u06cc\u0627\u0646_claim_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc_\u0637\u0628\u0642_climed_md", "label": "\u06f3.\u06f4 \u062c\u0631\u06cc\u0627\u0646 Claim (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc) \u2014 \u0637\u0628\u0642 `climed.md`", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L104"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f5_\u0627\u0646\u062a\u0642\u0627\u0644_\u062f\u0633\u062a\u06cc_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0628\u0632\u0627\u0631_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "label": "\u06f3.\u06f5 \u0627\u0646\u062a\u0642\u0627\u0644 \u062f\u0633\u062a\u06cc \u0627\u062f\u0645\u06cc\u0646 (\u0627\u0628\u0632\u0627\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L159"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f6_\u0641\u06cc\u0644\u062a\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a", "label": "\u06f3.\u06f6 \u0641\u06cc\u0644\u062a\u0631 \u0627\u062f\u0645\u06cc\u0646 + \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L163"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f7_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u06a9\u0631\u0627\u0644\u0631_\u06a9\u0645\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc", "label": "\u06f3.\u06f7 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u06a9\u0631\u0627\u0644\u0631 \u2014 \u06a9\u0645\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L169"}, {"id": "prompt_irimc_import_complete_\u06f3_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_api_\u0642\u0627\u0646\u0648\u0646_\u067e\u0631\u0648\u0698\u0647_\u0647\u0645\u0627\u0646_session", "label": "\u06f3.\u06f8 \u0645\u0633\u062a\u0646\u062f\u0627\u062a API (\u0642\u0627\u0646\u0648\u0646 \u067e\u0631\u0648\u0698\u0647 \u2014 \u0647\u0645\u0627\u0646 session)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L187"}, {"id": "prompt_irimc_import_complete_\u06f4_workstream_b_nobat724_front_\u062c\u0631\u06cc\u0627\u0646_claim_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "label": "\u06f4. Workstream B \u2014 nobat724_front (\u062c\u0631\u06cc\u0627\u0646 Claim \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L196"}, {"id": "prompt_irimc_import_complete_\u06f5_workstream_c_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_clinicpro_visibility_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc", "label": "\u06f5. Workstream C \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 clinicpro (visibility \u0639\u0645\u0644\u06cc\u0627\u062a\u06cc)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L217"}, {"id": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "label": "\u06f6. Workstream D \u2014 \u06a9\u0631\u0627\u0644\u0631 (\u0637\u0628\u0642 `docs/scenarios/crawler.md`)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L229"}, {"id": "prompt_irimc_import_complete_\u06f6_\u06f1_state_\u062f\u0627\u062e\u0644\u06cc_sqlite_stdlib_sqlite3_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u062c\u062f\u06cc\u062f_\u0646\u0635\u0628_\u0646\u06a9\u0646", "label": "\u06f6.\u06f1 State \u062f\u0627\u062e\u0644\u06cc \u2192 SQLite (stdlib `sqlite3`\u060c \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u062c\u062f\u06cc\u062f \u0646\u0635\u0628 \u0646\u06a9\u0646)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L233"}, {"id": "prompt_irimc_import_complete_\u06f6_\u06f2_\u062a\u0631\u062a\u06cc\u0628_\u067e\u0631\u062f\u0627\u0632\u0634_state_machine", "label": "\u06f6.\u06f2 \u062a\u0631\u062a\u06cc\u0628 \u067e\u0631\u062f\u0627\u0632\u0634 (state machine)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L251"}, {"id": "prompt_irimc_import_complete_\u06f6_\u06f3_\u067e\u0646\u0644_\u0648\u0628_\u062a\u0648\u06a9\u0646_\u062a\u0648\u0633\u0639\u0647_server_py_\u0645\u0648\u062c\u0648\u062f", "label": "\u06f6.\u06f3 \u067e\u0646\u0644 \u0648\u0628 \u062a\u0648\u06a9\u0646 (\u062a\u0648\u0633\u0639\u0647\u0654 `server.py` \u0645\u0648\u062c\u0648\u062f)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L259"}, {"id": "prompt_irimc_import_complete_\u06f6_\u06f4_\u0642\u0648\u0627\u0639\u062f_\u0633\u062e\u062a_\u06a9\u0631\u0627\u0644\u0631", "label": "\u06f6.\u06f4 \u0642\u0648\u0627\u0639\u062f \u0633\u062e\u062a \u06a9\u0631\u0627\u0644\u0631", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L266"}, {"id": "prompt_irimc_import_complete_\u06f7_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0633\u06cc\u0627\u0633\u062a_\u0641\u06cc\u0644\u062f_\u0628\u0647_\u0641\u06cc\u0644\u062f_source_of_truth", "label": "\u06f7. \u0645\u0627\u0644\u06a9\u06cc\u062a \u062f\u0627\u062f\u0647 \u2014 \u0633\u06cc\u0627\u0633\u062a \u0641\u06cc\u0644\u062f-\u0628\u0647-\u0641\u06cc\u0644\u062f (source of truth)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L275"}, {"id": "prompt_irimc_import_complete_\u06f8_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u062a\u0633\u062a_\u0627\u0644\u0632\u0627\u0645\u06cc_suite\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0633\u0628\u0632_\u0628\u0645\u0627\u0646\u0646\u062f", "label": "\u06f8. \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u062a\u0633\u062a (\u0627\u0644\u0632\u0627\u0645\u06cc\u061b suite\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u0633\u0628\u0632 \u0628\u0645\u0627\u0646\u0646\u062f)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L290"}, {"id": "prompt_irimc_import_complete_\u06f9_deployment_\u0639\u0645\u0644\u06cc\u0627\u062a", "label": "\u06f9. Deployment / \u0639\u0645\u0644\u06cc\u0627\u062a", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L319"}, {"id": "prompt_irimc_import_complete_\u06f1\u06f0_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634_definition_of_done", "label": "\u06f1\u06f0. \u0645\u0639\u06cc\u0627\u0631 \u067e\u0630\u06cc\u0631\u0634 (Definition of Done)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L329"}, {"id": "prompt_irimc_import_complete_\u0641\u0631\u0636\u06cc\u0627\u062a_\u0635\u0631\u06cc\u062d_\u0641\u0642\u0637_\u062c\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0634\u062a", "label": "\u0641\u0631\u0636\u06cc\u0627\u062a \u0635\u0631\u06cc\u062d (\u0641\u0642\u0637 \u062c\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0634\u062a)", "file_type": "document", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L338"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_irimc_import_complete_md", "target": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u067e\u0631\u0648\u0698\u0647_\u0647\u0627_\u0648_\u0628\u0631\u0646\u0686", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L6", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f1_\u0647\u062f\u0641_\u0641\u06cc\u0686\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L22", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L28", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632", "target": "prompt_irimc_import_complete_\u06f2_\u06f1_\u0622\u0646\u0686\u0647_\u0627\u0632_\u0642\u0628\u0644_\u067e\u06cc\u0627\u062f\u0647_\u0634\u062f\u0647_\u0648_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632", "target": "prompt_irimc_import_complete_\u06f2_\u06f2_\u0648\u0627\u06af\u0631\u0627\u06cc\u06cc_\u0647\u0627\u06cc_\u0633\u0646\u062f_\u0628\u0627_\u06a9\u062f_\u06a9\u0647_\u0627\u06cc\u0646_\u067e\u0631\u0627\u0645\u067e\u062a_\u062d\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0633\u062a\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L47", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L60", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0627\u0632_\u06a9\u0646\u062a\u0631\u0644\u0631_thin_controller", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L62", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f2_\u0646\u0642\u0634_role_unclaimed_doctor_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0646\u0634\u06cc\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L72", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f3_\u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc_\u06a9\u0644\u06cc\u062f_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0631\u0641\u0639_race", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L86", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f4_\u062c\u0631\u06cc\u0627\u0646_claim_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc_\u0637\u0628\u0642_climed_md", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L104", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f5_\u0627\u0646\u062a\u0642\u0627\u0644_\u062f\u0633\u062a\u06cc_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0628\u0632\u0627\u0631_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L159", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f6_\u0641\u06cc\u0644\u062a\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L163", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f7_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u06a9\u0631\u0627\u0644\u0631_\u06a9\u0645\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L169", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro", "target": "prompt_irimc_import_complete_\u06f3_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_api_\u0642\u0627\u0646\u0648\u0646_\u067e\u0631\u0648\u0698\u0647_\u0647\u0645\u0627\u0646_session", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L187", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f4_workstream_b_nobat724_front_\u062c\u0631\u06cc\u0627\u0646_claim_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L196", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f5_workstream_c_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_clinicpro_visibility_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L217", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L229", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "target": "prompt_irimc_import_complete_\u06f6_\u06f1_state_\u062f\u0627\u062e\u0644\u06cc_sqlite_stdlib_sqlite3_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u062c\u062f\u06cc\u062f_\u0646\u0635\u0628_\u0646\u06a9\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L233", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "target": "prompt_irimc_import_complete_\u06f6_\u06f2_\u062a\u0631\u062a\u06cc\u0628_\u067e\u0631\u062f\u0627\u0632\u0634_state_machine", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L251", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "target": "prompt_irimc_import_complete_\u06f6_\u06f3_\u067e\u0646\u0644_\u0648\u0628_\u062a\u0648\u06a9\u0646_\u062a\u0648\u0633\u0639\u0647_server_py_\u0645\u0648\u062c\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L259", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md", "target": "prompt_irimc_import_complete_\u06f6_\u06f4_\u0642\u0648\u0627\u0639\u062f_\u0633\u062e\u062a_\u06a9\u0631\u0627\u0644\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L266", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f7_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0633\u06cc\u0627\u0633\u062a_\u0641\u06cc\u0644\u062f_\u0628\u0647_\u0641\u06cc\u0644\u062f_source_of_truth", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L275", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f8_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u062a\u0633\u062a_\u0627\u0644\u0632\u0627\u0645\u06cc_suite\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0633\u0628\u0632_\u0628\u0645\u0627\u0646\u0646\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L290", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f9_deployment_\u0639\u0645\u0644\u06cc\u0627\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L319", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u06f1\u06f0_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634_definition_of_done", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L329", "weight": 1.0}, {"source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based", "target": "prompt_irimc_import_complete_\u0641\u0631\u0636\u06cc\u0627\u062a_\u0635\u0631\u06cc\u062d_\u0641\u0642\u0637_\u062c\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0634\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/irimc-import-complete.md", "source_location": "L338", "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/0e3d20caf42e18bb85e6cec731cff7076cb85c6b2cbc547abb921fa84a468a50.json b/graphify-out/cache/ast/v0.8.44/0e3d20caf42e18bb85e6cec731cff7076cb85c6b2cbc547abb921fa84a468a50.json
new file mode 100644
index 00000000..eb361392
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/0e3d20caf42e18bb85e6cec731cff7076cb85c6b2cbc547abb921fa84a468a50.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "label": "DoctorImportTest.php", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L1"}, {"id": "doctor_doctorimporttest_doctorimporttest", "label": "DoctorImportTest", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13"}, {"id": "apitestcase", "label": "ApiTestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "doctor_doctorimporttest_doctorimporttest_importpayload", "label": ".importPayload()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15"}, {"id": "doctor_doctorimporttest_doctorimporttest_freshcode", "label": ".freshCode()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "label": ".testImportCreatesUnclaimedDoctorWithSurrogateUser()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33"}, {"id": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "label": ".testReimportUpdatesInsteadOfDuplicating()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L58"}, {"id": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "label": ".testClaimedDoctorIsNeverOverwritten()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L83"}, {"id": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "label": ".testValidationErrors()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L110"}, {"id": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "label": ".testNonAdminIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "label": ".testImporterRoleCanImportButNothingElse()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L128"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "apitestcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor_doctorimporttest_doctorimporttest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "apitestcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L58", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L83", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L110", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L128", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L36", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L38", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L61", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L63", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L86", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L88", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L114", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L124", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L124", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L132", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L132", "weight": 1.0}], "raw_calls": [{"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L38", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L41", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L42", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertNotEmpty", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L43", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L50", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L50", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L52", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertStringStartsWith", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L54", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L54", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L55", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L55", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L63", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L68", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "count", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L74", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L74", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L78", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L78", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L80", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L80", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L85", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L88", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L92", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "transferOwnershipTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L94", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L95", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L99", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L104", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L105", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L105", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L106", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L106", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L107", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L107", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L112", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L114", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L117", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L118", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L118", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L123", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L125", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L125", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L130", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L132", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L135", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L139", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L139", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/1f37217049a8ca479d497bb907bafb8f9bcc2e265fb08195460c0f397733a972.json b/graphify-out/cache/ast/v0.8.44/1f37217049a8ca479d497bb907bafb8f9bcc2e265fb08195460c0f397733a972.json
new file mode 100644
index 00000000..ba49498e
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/1f37217049a8ca479d497bb907bafb8f9bcc2e265fb08195460c0f397733a972.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "label": "FixIrimcNamesCommand.php", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L1"}, {"id": "command_fixirimcnamescommand_fixirimcnamescommand", "label": "FixIrimcNamesCommand", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L22"}, {"id": "command", "label": "Command", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "command_fixirimcnamescommand_fixirimcnamescommand_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L28"}, {"id": "command_fixirimcnamescommand_fixirimcnamescommand_configure", "label": ".configure()", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L33"}, {"id": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "label": ".execute()", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38"}, {"id": "inputinterface", "label": "InputInterface", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38"}, {"id": "outputinterface", "label": "OutputInterface", "file_type": "code", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "persiantext", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "ascommand", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "command", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "inputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "inputoption", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "outputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "symfonystyle", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_fixirimcnamescommand_php", "target": "command_fixirimcnamescommand_fixirimcnamescommand", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L22", "weight": 1.0}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand", "target": "command", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L26", "weight": 1.0}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand", "target": "command_fixirimcnamescommand_fixirimcnamescommand_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L28", "weight": 1.0}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand", "target": "command_fixirimcnamescommand_fixirimcnamescommand_configure", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L33", "weight": 1.0}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand", "target": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38", "weight": 1.0}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "target": "inputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38", "weight": 1.0, "context": "parameter_type"}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "target": "outputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L38", "weight": 1.0, "context": "parameter_type"}, {"source": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "target": "command", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L68", "weight": 1.0}], "raw_calls": [{"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L30", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L35", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L41", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L52", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L52", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L53", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "text", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L54", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L54", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L54", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L56", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L63", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L66", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L66", "receiver": null}, {"caller_nid": "command_fixirimcnamescommand_fixirimcnamescommand_execute", "callee": "count", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php", "source_location": "L66", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/2cb340da1777982d5574a2b0814759c29b69df1c17c980a29833e9cb256eaf14.json b/graphify-out/cache/ast/v0.8.44/2cb340da1777982d5574a2b0814759c29b69df1c17c980a29833e9cb256eaf14.json
new file mode 100644
index 00000000..e896e0c2
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/2cb340da1777982d5574a2b0814759c29b69df1c17c980a29833e9cb256eaf14.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_fix_doctor_name_and_purge_md", "label": "fix-doctor-name-and-purge.md", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "label": "\u0631\u0641\u0639 \u0646\u0627\u0645 \u062f\u0648\u062a\u0627\u06cc\u06cc \u00ab\u062f\u06a9\u062a\u0631\u00bb \u062f\u0631 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a IRIMC + \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L1"}, {"id": "prompt_fix_doctor_name_and_purge_\u067e\u0631\u0648\u0698\u0647", "label": "\u067e\u0631\u0648\u0698\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L3"}, {"id": "prompt_fix_doctor_name_and_purge_\u0632\u0645\u06cc\u0646\u0647", "label": "\u0632\u0645\u06cc\u0646\u0647", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L7"}, {"id": "prompt_fix_doctor_name_and_purge_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L30"}, {"id": "prompt_fix_doctor_name_and_purge_\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/fix-doctor-name-and-purge.md", "source_location": "L36"}, {"id": "prompt_fix_doctor_name_and_purge_\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/fix-doctor-name-and-purge.md", "source_location": "L45"}, {"id": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641", "label": "\u0648\u0638\u0627\u06cc\u0641", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L64"}, {"id": "prompt_fix_doctor_name_and_purge_\u06f1_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a", "label": "\u06f1. \u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L66"}, {"id": "prompt_fix_doctor_name_and_purge_\u06f2_\u0627\u0635\u0644\u0627\u062d_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_irimc_\u0645\u0648\u062c\u0648\u062f", "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc IRIMC \u0645\u0648\u062c\u0648\u062f", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L85"}, {"id": "prompt_fix_doctor_name_and_purge_\u06f3_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0645\u06cc\u0632_\u062a\u0633\u062a", "label": "\u06f3. \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646 (\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0645\u06cc\u0632 \u062a\u0633\u062a)", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L99"}, {"id": "prompt_fix_doctor_name_and_purge_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645", "file_type": "document", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L131"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_claude_prompt_fix_doctor_name_and_purge_md", "target": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L1", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u067e\u0631\u0648\u0698\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L3", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0632\u0645\u06cc\u0646\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L7", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L30", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L36", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L45", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L64", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_name_and_purge_\u06f1_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L66", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_name_and_purge_\u06f2_\u0627\u0635\u0644\u0627\u062d_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_irimc_\u0645\u0648\u062c\u0648\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L85", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641", "target": "prompt_fix_doctor_name_and_purge_\u06f3_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0645\u06cc\u0632_\u062a\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L99", "weight": 1.0}, {"source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646", "target": "prompt_fix_doctor_name_and_purge_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645", "relation": "contains", "confidence": "EXTRACTED", "source_file": ".claude/prompt/fix-doctor-name-and-purge.md", "source_location": "L131", "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/2db1048374fc6c0916385e12acf4bd976d6230661af40e7bce3d1d8e125dc543.json b/graphify-out/cache/ast/v0.8.44/2db1048374fc6c0916385e12acf4bd976d6230661af40e7bce3d1d8e125dc543.json
new file mode 100644
index 00000000..4258f905
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/2db1048374fc6c0916385e12acf4bd976d6230661af40e7bce3d1d8e125dc543.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "label": "BackfillSurrogateRoleCommand.php", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L1"}, {"id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "label": "BackfillSurrogateRoleCommand", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L24"}, {"id": "command", "label": "Command", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L30"}, {"id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_configure", "label": ".configure()", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L35"}, {"id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "label": ".execute()", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40"}, {"id": "inputinterface", "label": "InputInterface", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40"}, {"id": "outputinterface", "label": "OutputInterface", "file_type": "code", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "doctorimportservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "ascommand", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "command", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "inputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "inputoption", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "outputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "symfonystyle", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_backfillsurrogaterolecommand_php", "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L24", "weight": 1.0}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "target": "command", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L28", "weight": 1.0}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L30", "weight": 1.0}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_configure", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L35", "weight": 1.0}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand", "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40", "weight": 1.0}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "target": "inputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40", "weight": 1.0, "context": "parameter_type"}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "target": "outputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L40", "weight": 1.0, "context": "parameter_type"}, {"source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "target": "command", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L74", "weight": 1.0}], "raw_calls": [{"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L32", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L37", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L43", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L46", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L58", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "text", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L62", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L62", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L62", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L64", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L69", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L72", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L72", "receiver": null}, {"caller_nid": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute", "callee": "count", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php", "source_location": "L72", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/37e0abb6301621c0888c4a656b37bc60ba1deea4c7f5682270b0a478d51ddd40.json b/graphify-out/cache/ast/v0.8.44/37e0abb6301621c0888c4a656b37bc60ba1deea4c7f5682270b0a478d51ddd40.json
new file mode 100644
index 00000000..a79ae486
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/37e0abb6301621c0888c4a656b37bc60ba1deea4c7f5682270b0a478d51ddd40.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_md", "label": "doctor.md", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L1"}, {"id": "api_doctor_doctor_api", "label": "Doctor API", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L1"}, {"id": "api_doctor_post_api_v1_doctor", "label": "POST `/api/v1/doctor`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L13"}, {"id": "api_doctor_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L19"}, {"id": "api_doctor_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L43"}, {"id": "api_doctor_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L63"}, {"id": "api_doctor_get_api_v1_doctor_uuid", "label": "GET `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L72"}, {"id": "api_doctor_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L78"}, {"id": "api_doctor_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L83"}, {"id": "api_doctor_errors_122", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L122"}, {"id": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "label": "GET `/api/v1/clinic/my-doctor/{doctorUuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L129"}, {"id": "api_doctor_path_parameters_135", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L135"}, {"id": "api_doctor_response_200_140", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L140"}, {"id": "api_doctor_errors_159", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L159"}, {"id": "api_doctor_schedule_fields_notes", "label": "Schedule Fields Notes", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L167"}, {"id": "api_doctor_get_api_v1_doctors", "label": "GET `/api/v1/doctors`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L179"}, {"id": "api_doctor_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L185"}, {"id": "api_doctor_response_200_196", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L196"}, {"id": "api_doctor_patch_api_v1_doctor_uuid", "label": "PATCH `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L226"}, {"id": "api_doctor_path_parameters_232", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L232"}, {"id": "api_doctor_request_body_application_json_237", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L237"}, {"id": "api_doctor_response_200_256", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L256"}, {"id": "api_doctor_errors_259", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L259"}, {"id": "api_doctor_delete_api_v1_doctor_uuid", "label": "DELETE `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L268"}, {"id": "api_doctor_path_parameters_278", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L278"}, {"id": "api_doctor_response_200_283", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L283"}, {"id": "api_doctor_errors_291", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L291"}, {"id": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "label": "POST `/file/upload/clinic_pro/doctor/field_image`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L301"}, {"id": "api_doctor_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L307"}, {"id": "api_doctor_response_200_314", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L314"}, {"id": "api_doctor_errors_328", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L328"}, {"id": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "label": "GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L336"}, {"id": "api_doctor_path_parameters_342", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L342"}, {"id": "api_doctor_response_200_347", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L347"}, {"id": "api_doctor_post_api_v1_clinic_pro_doctor_address", "label": "POST `/api/v1/clinic-pro/doctor-address`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L386"}, {"id": "api_doctor_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L392"}, {"id": "api_doctor_response_201_415", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L415"}, {"id": "api_doctor_errors_430", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L430"}, {"id": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "label": "PATCH `/api/v1/clinic-pro/doctor-address/{id}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L439"}, {"id": "api_doctor_path_parameters_445", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L445"}, {"id": "api_doctor_request_body_450", "label": "Request Body", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L450"}, {"id": "api_doctor_response_200_453", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L453"}, {"id": "api_doctor_errors_456", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L456"}, {"id": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "label": "DELETE `/api/v1/clinic-pro/doctor-address/{id}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L465"}, {"id": "api_doctor_response_200_471", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L471"}, {"id": "api_doctor_errors_476", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L476"}, {"id": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "label": "POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L485"}, {"id": "api_doctor_path_parameters_491", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L491"}, {"id": "api_doctor_response_201_496", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L496"}, {"id": "api_doctor_errors_499", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L499"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_md", "target": "api_doctor_doctor_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_doctor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L13", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L19", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L43", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L63", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L72", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L78", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L83", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_errors_122", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L122", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L129", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_path_parameters_135", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L135", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_response_200_140", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L140", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_errors_159", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L159", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_schedule_fields_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L167", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L179", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctors", "target": "api_doctor_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L185", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctors", "target": "api_doctor_response_200_196", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L196", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_patch_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L226", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_path_parameters_232", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L232", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_request_body_application_json_237", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L237", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_response_200_256", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L256", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_errors_259", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L259", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_delete_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L268", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_path_parameters_278", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L278", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_response_200_283", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L283", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_errors_291", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L291", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L301", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L307", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_response_200_314", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L314", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_errors_328", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L328", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L336", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "target": "api_doctor_path_parameters_342", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L342", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "target": "api_doctor_response_200_347", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L347", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_clinic_pro_doctor_address", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L386", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L392", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_response_201_415", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L415", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_errors_430", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L430", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L439", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_path_parameters_445", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L445", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_request_body_450", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L450", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_response_200_453", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L453", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_errors_456", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L456", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L465", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_response_200_471", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L471", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_errors_476", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L476", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L485", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_path_parameters_491", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L491", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_response_201_496", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L496", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_errors_499", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L499", "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/3acf757cabaaf6f03f19f0280886adbdef3bc873f8f5c31979a70cb87984646e.json b/graphify-out/cache/ast/v0.8.44/3acf757cabaaf6f03f19f0280886adbdef3bc873f8f5c31979a70cb87984646e.json
new file mode 100644
index 00000000..cccbbb6b
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/3acf757cabaaf6f03f19f0280886adbdef3bc873f8f5c31979a70cb87984646e.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711150000_php", "label": "Version20260711150000.php", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L1"}, {"id": "migrations_version20260711150000_version20260711150000", "label": "Version20260711150000", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L20"}, {"id": "abstractmigration", "label": "AbstractMigration", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "migrations_version20260711150000_version20260711150000_getdescription", "label": ".getDescription()", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L22"}, {"id": "migrations_version20260711150000_version20260711150000_up", "label": ".up()", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L27"}, {"id": "schema", "label": "Schema", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L27"}, {"id": "migrations_version20260711150000_version20260711150000_down", "label": ".down()", "file_type": "code", "source_file": "migrations/Version20260711150000.php", "source_location": "L44"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711150000_php", "target": "schema", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711150000_php", "target": "abstractmigration", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711150000_php", "target": "migrations_version20260711150000_version20260711150000", "relation": "contains", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L20", "weight": 1.0}, {"source": "migrations_version20260711150000_version20260711150000", "target": "abstractmigration", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L20", "weight": 1.0}, {"source": "migrations_version20260711150000_version20260711150000", "target": "migrations_version20260711150000_version20260711150000_getdescription", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L22", "weight": 1.0}, {"source": "migrations_version20260711150000_version20260711150000", "target": "migrations_version20260711150000_version20260711150000_up", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L27", "weight": 1.0}, {"source": "migrations_version20260711150000_version20260711150000_up", "target": "schema", "relation": "references", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L27", "weight": 1.0, "context": "parameter_type"}, {"source": "migrations_version20260711150000_version20260711150000", "target": "migrations_version20260711150000_version20260711150000_down", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L44", "weight": 1.0}, {"source": "migrations_version20260711150000_version20260711150000_down", "target": "schema", "relation": "references", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711150000.php", "source_location": "L44", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [{"caller_nid": "migrations_version20260711150000_version20260711150000_up", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L29", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_up", "callee": "abortIf", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L34", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_up", "callee": "json_encode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L37", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_up", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L40", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_up", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L41", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_down", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L46", "receiver": null}, {"caller_nid": "migrations_version20260711150000_version20260711150000_down", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php", "source_location": "L47", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/3eabfed85bf5b2e550f9855bda39683c34b16b200d06468bda8aec8c0b15def1.json b/graphify-out/cache/ast/v0.8.44/3eabfed85bf5b2e550f9855bda39683c34b16b200d06468bda8aec8c0b15def1.json
new file mode 100644
index 00000000..42a9ab55
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/3eabfed85bf5b2e550f9855bda39683c34b16b200d06468bda8aec8c0b15def1.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "label": "DoctorClaimTest.php", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L1"}, {"id": "doctor_doctorclaimtest_doctorclaimtest", "label": "DoctorClaimTest", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15"}, {"id": "apitestcase", "label": "ApiTestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "doctor_doctorclaimtest_doctorclaimtest_setup", "label": ".setUp()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L17"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "label": ".mockApiIr()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L23"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "label": ".importUnclaimedDoctor()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L32"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "label": ".claimBody()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L44"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "label": ".testSuccessfulClaimTransfersOwnershipAndDeletesSurrogate()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L55"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "label": ".testNameMismatchRevertsToUnclaimed()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L85"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "label": ".testDeceasedPersonIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L105"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "label": ".testShahkarMismatchIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L116"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "label": ".testAlreadyClaimedIsConflict()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L127"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "label": ".testUserWhoAlreadyOwnsADoctorCannotClaim()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L141"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "label": ".testValidationErrors()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L159"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "label": ".testClaimInfoIsPublic()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L172"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "label": ".testAdminTransferHappyPath()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L183"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "label": ".testAdminTransferRequiresAdmin()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L205"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "label": ".testClaimRequiresAuthentication()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L213"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctorclaimrequest", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "apiirservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "apitestcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctor_doctorclaimtest_doctorclaimtest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "apitestcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_setup", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L17", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L23", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L32", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L44", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L55", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L85", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L105", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L116", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L127", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L141", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L159", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L172", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L183", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L205", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L213", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L57", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L58", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L64", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L87", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L88", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L91", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L107", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L108", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L111", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L118", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L119", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L122", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L129", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L130", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L133", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L143", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L145", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L148", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L161", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L162", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L174", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L185", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L207", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L215", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L216", "weight": 1.0}], "raw_calls": [{"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_setup", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L19", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_setup", "callee": "disableReboot", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L20", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "createMock", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L25", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L26", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L26", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L27", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L27", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "static", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L34", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L36", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "callee": "str_pad", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L61", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L61", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L62", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L66", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L66", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L67", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L69", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L73", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getManagedBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L73", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "isNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L81", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L81", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L90", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L95", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L96", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L96", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L97", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L97", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertStringStartsWith", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L100", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L100", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertNotNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getFailureReason", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L110", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L111", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L113", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L113", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L121", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L122", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L132", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L134", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L134", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L137", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L147", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L148", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L149", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L149", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L151", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L152", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L152", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L154", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L155", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L155", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L156", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L156", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L163", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L165", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L166", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L166", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L168", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L169", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L169", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L176", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L177", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L177", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L178", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L178", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "getResponse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L178", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L179", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L180", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L186", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "str_pad", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L187", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L187", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L189", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L191", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L191", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L192", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L194", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L195", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L195", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L196", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L196", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L197", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L197", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L197", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L198", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L198", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L198", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L201", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L202", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L202", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L208", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L209", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L210", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L210", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L216", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "json_encode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L216", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L217", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L217", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/407ad0bafab74cfedadadc89b2df866ac69fac1182a19354c865a0170f998150.json b/graphify-out/cache/ast/v0.8.44/407ad0bafab74cfedadadc89b2df866ac69fac1182a19354c865a0170f998150.json
new file mode 100644
index 00000000..a79ae486
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/407ad0bafab74cfedadadc89b2df866ac69fac1182a19354c865a0170f998150.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_md", "label": "doctor.md", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L1"}, {"id": "api_doctor_doctor_api", "label": "Doctor API", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L1"}, {"id": "api_doctor_post_api_v1_doctor", "label": "POST `/api/v1/doctor`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L13"}, {"id": "api_doctor_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L19"}, {"id": "api_doctor_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L43"}, {"id": "api_doctor_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L63"}, {"id": "api_doctor_get_api_v1_doctor_uuid", "label": "GET `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L72"}, {"id": "api_doctor_path_parameters", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L78"}, {"id": "api_doctor_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L83"}, {"id": "api_doctor_errors_122", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L122"}, {"id": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "label": "GET `/api/v1/clinic/my-doctor/{doctorUuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L129"}, {"id": "api_doctor_path_parameters_135", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L135"}, {"id": "api_doctor_response_200_140", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L140"}, {"id": "api_doctor_errors_159", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L159"}, {"id": "api_doctor_schedule_fields_notes", "label": "Schedule Fields Notes", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L167"}, {"id": "api_doctor_get_api_v1_doctors", "label": "GET `/api/v1/doctors`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L179"}, {"id": "api_doctor_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L185"}, {"id": "api_doctor_response_200_196", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L196"}, {"id": "api_doctor_patch_api_v1_doctor_uuid", "label": "PATCH `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L226"}, {"id": "api_doctor_path_parameters_232", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L232"}, {"id": "api_doctor_request_body_application_json_237", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L237"}, {"id": "api_doctor_response_200_256", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L256"}, {"id": "api_doctor_errors_259", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L259"}, {"id": "api_doctor_delete_api_v1_doctor_uuid", "label": "DELETE `/api/v1/doctor/{uuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L268"}, {"id": "api_doctor_path_parameters_278", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L278"}, {"id": "api_doctor_response_200_283", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L283"}, {"id": "api_doctor_errors_291", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L291"}, {"id": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "label": "POST `/file/upload/clinic_pro/doctor/field_image`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L301"}, {"id": "api_doctor_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L307"}, {"id": "api_doctor_response_200_314", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L314"}, {"id": "api_doctor_errors_328", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L328"}, {"id": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "label": "GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L336"}, {"id": "api_doctor_path_parameters_342", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L342"}, {"id": "api_doctor_response_200_347", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L347"}, {"id": "api_doctor_post_api_v1_clinic_pro_doctor_address", "label": "POST `/api/v1/clinic-pro/doctor-address`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L386"}, {"id": "api_doctor_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L392"}, {"id": "api_doctor_response_201_415", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L415"}, {"id": "api_doctor_errors_430", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L430"}, {"id": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "label": "PATCH `/api/v1/clinic-pro/doctor-address/{id}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L439"}, {"id": "api_doctor_path_parameters_445", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L445"}, {"id": "api_doctor_request_body_450", "label": "Request Body", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L450"}, {"id": "api_doctor_response_200_453", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L453"}, {"id": "api_doctor_errors_456", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L456"}, {"id": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "label": "DELETE `/api/v1/clinic-pro/doctor-address/{id}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L465"}, {"id": "api_doctor_response_200_471", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L471"}, {"id": "api_doctor_errors_476", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L476"}, {"id": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "label": "POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L485"}, {"id": "api_doctor_path_parameters_491", "label": "Path Parameters", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L491"}, {"id": "api_doctor_response_201_496", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L496"}, {"id": "api_doctor_errors_499", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor.md", "source_location": "L499"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_md", "target": "api_doctor_doctor_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_doctor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L13", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L19", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L43", "weight": 1.0}, {"source": "api_doctor_post_api_v1_doctor", "target": "api_doctor_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L63", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L72", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_path_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L78", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L83", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctor_uuid", "target": "api_doctor_errors_122", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L122", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L129", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_path_parameters_135", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L135", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_response_200_140", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L140", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_errors_159", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L159", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid", "target": "api_doctor_schedule_fields_notes", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L167", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L179", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctors", "target": "api_doctor_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L185", "weight": 1.0}, {"source": "api_doctor_get_api_v1_doctors", "target": "api_doctor_response_200_196", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L196", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_patch_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L226", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_path_parameters_232", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L232", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_request_body_application_json_237", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L237", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_response_200_256", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L256", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_doctor_uuid", "target": "api_doctor_errors_259", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L259", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_delete_api_v1_doctor_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L268", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_path_parameters_278", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L278", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_response_200_283", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L283", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_doctor_uuid", "target": "api_doctor_errors_291", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L291", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L301", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L307", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_response_200_314", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L314", "weight": 1.0}, {"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image", "target": "api_doctor_errors_328", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L328", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L336", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "target": "api_doctor_path_parameters_342", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L342", "weight": 1.0}, {"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid", "target": "api_doctor_response_200_347", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L347", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_clinic_pro_doctor_address", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L386", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L392", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_response_201_415", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L415", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address", "target": "api_doctor_errors_430", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L430", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L439", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_path_parameters_445", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L445", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_request_body_450", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L450", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_response_200_453", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L453", "weight": 1.0}, {"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_errors_456", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L456", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L465", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_response_200_471", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L471", "weight": 1.0}, {"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id", "target": "api_doctor_errors_476", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L476", "weight": 1.0}, {"source": "api_doctor_doctor_api", "target": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L485", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_path_parameters_491", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L491", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_response_201_496", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L496", "weight": 1.0}, {"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid", "target": "api_doctor_errors_499", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor.md", "source_location": "L499", "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/416749471adfa15ec849cbf143456d33bdefddc9d52c52fa593d99598289da84.json b/graphify-out/cache/ast/v0.8.44/416749471adfa15ec849cbf143456d33bdefddc9d52c52fa593d99598289da84.json
new file mode 100644
index 00000000..39fecb0b
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/416749471adfa15ec849cbf143456d33bdefddc9d52c52fa593d99598289da84.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "label": "DoctorController.php", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L1"}, {"id": "controller_doctorcontroller_doctorcontroller", "label": "DoctorController", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L30"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_doctorcontroller_doctorcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L33"}, {"id": "controller_doctorcontroller_doctorcontroller_create", "label": ".create()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52"}, {"id": "controller_doctorcontroller_doctorcontroller_show", "label": ".show()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L129"}, {"id": "controller_doctorcontroller_doctorcontroller_showforclinic", "label": ".showForClinic()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L176"}, {"id": "controller_doctorcontroller_doctorcontroller_list", "label": ".list()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L210"}, {"id": "controller_doctorcontroller_doctorcontroller_update", "label": ".update()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L262"}, {"id": "controller_doctorcontroller_doctorcontroller_delete", "label": ".delete()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L345"}, {"id": "controller_doctorcontroller_doctorcontroller_uploadimage", "label": ".uploadImage()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L396"}, {"id": "controller_doctorcontroller_doctorcontroller_createaddress", "label": ".createAddress()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L490"}, {"id": "controller_doctorcontroller_doctorcontroller_showaddress", "label": ".showAddress()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L553"}, {"id": "controller_doctorcontroller_doctorcontroller_updateaddress", "label": ".updateAddress()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L591"}, {"id": "controller_doctorcontroller_doctorcontroller_deleteaddress", "label": ".deleteAddress()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L650"}, {"id": "controller_doctorcontroller_doctorcontroller_listaddresses", "label": ".listAddresses()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L696"}, {"id": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "label": ".hydrateDoctor()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L741"}, {"id": "doctor", "label": "Doctor", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L741"}, {"id": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "label": ".hydrateAddress()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L814"}, {"id": "doctoraddress", "label": "DoctorAddress", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L814"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "weeklyschedulerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "tenantinsurance", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "tenantinsurancecleanupservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "userrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "clinic", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "clinicrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "doctorservicerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "doctoraddress", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "doctoraddressrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "cityrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "provincerepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "filevalidatorservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "specialtyrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L24", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L25", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L26", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L27", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L28", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorcontroller_php", "target": "controller_doctorcontroller_doctorcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L30", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L31", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L33", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_create", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_create", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_create", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_create", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L52", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_show", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L129", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_show", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L129", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_showforclinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L176", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_showforclinic", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L176", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_showforclinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L176", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_list", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L210", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_list", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L210", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_list", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L210", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_update", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L262", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_update", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L262", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_update", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L262", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_update", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L262", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_delete", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L345", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_delete", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L345", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_delete", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L345", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_uploadimage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L396", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_uploadimage", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L396", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_uploadimage", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L396", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_createaddress", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L490", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_createaddress", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L490", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_createaddress", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L490", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_createaddress", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L490", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_showaddress", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L553", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_showaddress", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L553", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_showaddress", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L553", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_updateaddress", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L591", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_updateaddress", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L591", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_updateaddress", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L591", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_updateaddress", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L591", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_deleteaddress", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L650", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_deleteaddress", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L650", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_deleteaddress", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L650", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_listaddresses", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L696", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_listaddresses", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L696", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L741", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L741", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller", "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L814", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "target": "doctoraddress", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L814", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorcontroller_doctorcontroller_create", "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L114", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_update", "target": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L338", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_createaddress", "target": "doctoraddress", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L546", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_createaddress", "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L547", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_updateaddress", "target": "doctoraddress", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L635", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_updateaddress", "target": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L644", "weight": 1.0}, {"source": "controller_doctorcontroller_doctorcontroller_deleteaddress", "target": "doctoraddress", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Controller/DoctorController.php", "source_location": "L684", "weight": 1.0}], "raw_calls": [{"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L106", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L106", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L115", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L119", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L121", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L126", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_create", "callee": "toDetailArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L126", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L152", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L157", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L159", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getTelephone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L163", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getCityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L164", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getProvinceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L165", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L167", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L167", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "getLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L168", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "array_merge", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_show", "callee": "toDetailArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L185", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "contains", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getDoctors", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L191", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L195", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "array_merge", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L195", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "toDetailArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L195", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L196", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L197", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getTelephone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getCityId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L201", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getProvinceId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L202", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L204", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L205", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showforclinic", "callee": "getLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L205", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "applyToListFilters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "findWithFilters", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L247", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "findByDoctors", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L250", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L251", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L251", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L254", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L255", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "toListArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L255", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_list", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L255", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L326", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L328", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L331", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L331", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L331", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L331", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L332", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L335", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L335", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L336", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L336", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L339", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L341", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L342", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_update", "callee": "toDetailArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L342", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L376", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L380", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L380", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L380", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L380", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L381", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L382", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "count", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L385", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L386", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "purgeForEntity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L389", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L389", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L390", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_delete", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L391", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L446", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L447", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L448", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "sys_get_temp_dir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L452", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "uniqid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L452", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "file_put_contents", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L453", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "validate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L457", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "detectMimeType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L458", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L460", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L461", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "is_dir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L463", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "mkdir", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L464", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "uniqid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L467", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "rename", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L469", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "filesize", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L471", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L474", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L475", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L476", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "\\Symfony\\Component\\Uid\\Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L476", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "file_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L483", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "unlink", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L483", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L484", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_uploadimage", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L484", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "findByUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L527", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L528", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L529", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L532", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L532", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L535", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L540", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L542", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L548", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_createaddress", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L579", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L581", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L584", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L585", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L588", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_showaddress", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L588", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L630", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L632", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L635", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L636", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L639", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L639", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L639", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L639", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L640", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L643", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L643", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "save", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L645", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L647", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_updateaddress", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L647", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L679", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L681", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "getType", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L684", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L685", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L688", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "getDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L688", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L688", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L688", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L689", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L692", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_deleteaddress", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L693", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L719", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L721", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L724", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L725", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L726", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "getAddresses", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L726", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "findByDoctor", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L730", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "findBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L732", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L732", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_listaddresses", "callee": "array_merge", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L743", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L743", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L744", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L744", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L745", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L745", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L746", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setActivityTime", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L746", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L747", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L747", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L748", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L748", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L749", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L749", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L750", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L750", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L753", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getImages", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L754", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setImages", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L756", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L758", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L758", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setImages", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L759", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L763", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L763", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_string", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L768", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "filter_var", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L768", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "setSocialMedia", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L772", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L776", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L776", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L777", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L777", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L779", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L780", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L780", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L785", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L786", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L787", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L788", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getServices", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L788", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L790", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L791", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getServices", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L791", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L796", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L797", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getProvinces", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L797", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L799", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L800", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getProvinces", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L800", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L805", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L805", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L806", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getCities", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L806", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L808", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L809", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydratedoctor", "callee": "getCities", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L809", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L816", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L816", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setTelephone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L818", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L820", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L820", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L821", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L821", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L823", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setLatitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L823", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L824", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setLongitude", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L824", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L826", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L827", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setCity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L828", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L830", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L831", "receiver": null}, {"caller_nid": "controller_doctorcontroller_doctorcontroller_hydrateaddress", "callee": "setProvince", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorController.php", "source_location": "L832", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/4917001dfa1c0822366b8bfa1951c4d6c97787ed244107d20145e2ce15119293.json b/graphify-out/cache/ast/v0.8.44/4917001dfa1c0822366b8bfa1951c4d6c97787ed244107d20145e2ce15119293.json
new file mode 100644
index 00000000..16e09a3f
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/4917001dfa1c0822366b8bfa1951c4d6c97787ed244107d20145e2ce15119293.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_util_persiantext_php", "label": "PersianText.php", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L1"}, {"id": "util_persiantext_persiantext", "label": "PersianText", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L12"}, {"id": "util_persiantext_persiantext_normalize", "label": ".normalize()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L14"}, {"id": "util_persiantext_persiantext_samename", "label": ".sameName()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L40"}, {"id": "util_persiantext_persiantext_stripdoctortitle", "label": ".stripDoctorTitle()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L46"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_util_persiantext_php", "target": "util_persiantext_persiantext", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L12", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_normalize", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L14", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_samename", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L40", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_stripdoctortitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L46", "weight": 1.0}], "raw_calls": [{"caller_nid": "util_persiantext_persiantext_normalize", "callee": "class_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L16", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "\\Normalizer", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L17", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "strtr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L20", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "strtr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L31", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "array_combine", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L31", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L36", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L36", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_samename", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L42", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_samename", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L42", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L48", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L48", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L48", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/4b0e0251d1b9331ee58fc182d1a51a2e2297a3f5211886432403a8e8535d3a76.json b/graphify-out/cache/ast/v0.8.44/4b0e0251d1b9331ee58fc182d1a51a2e2297a3f5211886432403a8e8535d3a76.json
new file mode 100644
index 00000000..591096b1
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/4b0e0251d1b9331ee58fc182d1a51a2e2297a3f5211886432403a8e8535d3a76.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "label": "DoctorClaimController.php", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L1"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller", "label": "DoctorClaimController", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L19"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L22"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "label": ".claimInfo()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L30"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L30"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "label": ".claim()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "label": ".transfer()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L123"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "label": ".claimsList()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L166"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "doctorclaimservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "toomanyrequestshttpexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "ratelimiterfactory", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "controller_doctorclaimcontroller_doctorclaimcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L19", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L20", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L22", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L30", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L30", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L52", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L123", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L123", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L123", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L166", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L166", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L166", "weight": 1.0, "context": "return_type"}], "raw_calls": [{"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L41", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L43", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L47", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L48", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "create", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L80", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L80", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "consume", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "isAccepted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getTimestamp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L83", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getRetryAfter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L83", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L83", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "assertValid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L89", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L98", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L101", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L102", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L104", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L105", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L107", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L118", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L119", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L119", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L147", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L150", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L150", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L152", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L153", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "transferByAdmin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L156", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L159", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L182", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L183", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L185", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L185", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L188", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L189", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L189", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L194", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L199", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L200", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/4d0e9e93c8e99a5d62dcb5eb7d74b1129024c0ae20343287c1fb3c1f993385e7.json b/graphify-out/cache/ast/v0.8.44/4d0e9e93c8e99a5d62dcb5eb7d74b1129024c0ae20343287c1fb3c1f993385e7.json
new file mode 100644
index 00000000..81dc3cdf
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/4d0e9e93c8e99a5d62dcb5eb7d74b1129024c0ae20343287c1fb3c1f993385e7.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "label": "Doctor.php", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L1"}, {"id": "entity_doctor_doctor", "label": "Doctor", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L17"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L36"}, {"id": "collection", "label": "Collection", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L108"}, {"id": "entity_doctor_doctor_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L143"}, {"id": "entity_doctor_doctor_getid", "label": ".getId()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L157"}, {"id": "entity_doctor_doctor_getuuid", "label": ".getUuid()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L161"}, {"id": "entity_doctor_doctor_getuser", "label": ".getUser()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L165"}, {"id": "entity_doctor_doctor_getname", "label": ".getName()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L169"}, {"id": "entity_doctor_doctor_getgender", "label": ".getGender()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L173"}, {"id": "entity_doctor_doctor_getmedicalsystemcode", "label": ".getMedicalSystemCode()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L177"}, {"id": "entity_doctor_doctor_getmobilenumber", "label": ".getMobileNumber()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L181"}, {"id": "entity_doctor_doctor_getactivitytime", "label": ".getActivityTime()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L185"}, {"id": "entity_doctor_doctor_getdegree", "label": ".getDegree()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L189"}, {"id": "entity_doctor_doctor_getinfo", "label": ".getInfo()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L193"}, {"id": "entity_doctor_doctor_getimages", "label": ".getImages()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L197"}, {"id": "entity_doctor_doctor_getsocialmedia", "label": ".getSocialMedia()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L201"}, {"id": "entity_doctor_doctor_getdoctorrate", "label": ".getDoctorRate()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L205"}, {"id": "entity_doctor_doctor_getdoctorratepercentage", "label": ".getDoctorRatePercentage()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L209"}, {"id": "entity_doctor_doctor_isactivedoctorappointment", "label": ".isActiveDoctorAppointment()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L213"}, {"id": "entity_doctor_doctor_getrepresentationid", "label": ".getRepresentationId()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L217"}, {"id": "entity_doctor_doctor_getnotificationmobile", "label": ".getNotificationMobile()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L221"}, {"id": "entity_doctor_doctor_getownerstatus", "label": ".getOwnerStatus()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L225"}, {"id": "entity_doctor_doctor_getsource", "label": ".getSource()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L229"}, {"id": "entity_doctor_doctor_getsourceref", "label": ".getSourceRef()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L233"}, {"id": "entity_doctor_doctor_getmanagedby", "label": ".getManagedBy()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L237"}, {"id": "entity_doctor_doctor_getclaimedat", "label": ".getClaimedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L241"}, {"id": "entity_doctor_doctor_getcreatedat", "label": ".getCreatedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L245"}, {"id": "entity_doctor_doctor_getupdatedat", "label": ".getUpdatedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L249"}, {"id": "entity_doctor_doctor_getspecialties", "label": ".getSpecialties()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L253"}, {"id": "entity_doctor_doctor_getservices", "label": ".getServices()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L257"}, {"id": "entity_doctor_doctor_getprovinces", "label": ".getProvinces()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L261"}, {"id": "entity_doctor_doctor_getcities", "label": ".getCities()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L265"}, {"id": "entity_doctor_doctor_getaddresses", "label": ".getAddresses()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L269"}, {"id": "entity_doctor_doctor_setname", "label": ".setName()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L274"}, {"id": "self", "label": "self", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L274"}, {"id": "entity_doctor_doctor_setgender", "label": ".setGender()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L279"}, {"id": "entity_doctor_doctor_setmedicalsystemcode", "label": ".setMedicalSystemCode()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L285"}, {"id": "entity_doctor_doctor_setmobilenumber", "label": ".setMobileNumber()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L291"}, {"id": "entity_doctor_doctor_setactivitytime", "label": ".setActivityTime()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L297"}, {"id": "entity_doctor_doctor_setdegree", "label": ".setDegree()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L303"}, {"id": "entity_doctor_doctor_setinfo", "label": ".setInfo()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L309"}, {"id": "entity_doctor_doctor_setimages", "label": ".setImages()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L315"}, {"id": "entity_doctor_doctor_setsocialmedia", "label": ".setSocialMedia()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L321"}, {"id": "entity_doctor_doctor_setdoctorrate", "label": ".setDoctorRate()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L327"}, {"id": "entity_doctor_doctor_setdoctorratepercentage", "label": ".setDoctorRatePercentage()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L333"}, {"id": "entity_doctor_doctor_setactivedoctorappointment", "label": ".setActiveDoctorAppointment()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L339"}, {"id": "entity_doctor_doctor_setrepresentationid", "label": ".setRepresentationId()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L345"}, {"id": "entity_doctor_doctor_setnotificationmobile", "label": ".setNotificationMobile()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L351"}, {"id": "entity_doctor_doctor_setownerstatus", "label": ".setOwnerStatus()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L357"}, {"id": "entity_doctor_doctor_setsource", "label": ".setSource()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L363"}, {"id": "entity_doctor_doctor_setsourceref", "label": ".setSourceRef()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L369"}, {"id": "entity_doctor_doctor_setmanagedby", "label": ".setManagedBy()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L375"}, {"id": "entity_doctor_doctor_setclaimedat", "label": ".setClaimedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L381"}, {"id": "entity_doctor_doctor_transferownershipto", "label": ".transferOwnershipTo()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L392"}, {"id": "entity_doctor_doctor_touch", "label": ".touch()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L402"}, {"id": "entity_doctor_doctor_computeschedulefields", "label": ".computeScheduleFields()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L411"}, {"id": "weeklyschedule", "label": "WeeklySchedule", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L411"}, {"id": "entity_doctor_doctor_computescheduleparts", "label": ".computeScheduleParts()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L428"}, {"id": "entity_doctor_doctor_getexperience", "label": ".getExperience()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L498"}, {"id": "entity_doctor_doctor_tolistarray", "label": ".toListArray()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L506"}, {"id": "entity_doctor_doctor_todetailarray", "label": ".toDetailArray()", "file_type": "code", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L530"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "weeklyschedule", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "doctorservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "city", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "province", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "arraycollection", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "collection", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "mapping", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctor_php", "target": "entity_doctor_doctor", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L17", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L36", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L108", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L116", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L124", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L132", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L140", "weight": 1.0, "context": "field"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L143", "weight": 1.0}, {"source": "entity_doctor_doctor_construct", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L143", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L157", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getuuid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L161", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L165", "weight": 1.0}, {"source": "entity_doctor_doctor_getuser", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L165", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L169", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getgender", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L173", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getmedicalsystemcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L177", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getmobilenumber", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L181", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getactivitytime", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L185", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getdegree", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L189", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getinfo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L193", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getimages", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L197", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getsocialmedia", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L201", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getdoctorrate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L205", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getdoctorratepercentage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L209", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_isactivedoctorappointment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L213", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getrepresentationid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L217", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getnotificationmobile", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L221", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getownerstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L225", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getsource", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L229", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getsourceref", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L233", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getmanagedby", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L237", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getclaimedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L241", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getcreatedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L245", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getupdatedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L249", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getspecialties", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L253", "weight": 1.0}, {"source": "entity_doctor_doctor_getspecialties", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L253", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getservices", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L257", "weight": 1.0}, {"source": "entity_doctor_doctor_getservices", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L257", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getprovinces", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L261", "weight": 1.0}, {"source": "entity_doctor_doctor_getprovinces", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L261", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getcities", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L265", "weight": 1.0}, {"source": "entity_doctor_doctor_getcities", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L265", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getaddresses", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L269", "weight": 1.0}, {"source": "entity_doctor_doctor_getaddresses", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L269", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L274", "weight": 1.0}, {"source": "entity_doctor_doctor_setname", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L274", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setgender", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L279", "weight": 1.0}, {"source": "entity_doctor_doctor_setgender", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L279", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setmedicalsystemcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L285", "weight": 1.0}, {"source": "entity_doctor_doctor_setmedicalsystemcode", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L285", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setmobilenumber", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L291", "weight": 1.0}, {"source": "entity_doctor_doctor_setmobilenumber", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L291", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setactivitytime", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L297", "weight": 1.0}, {"source": "entity_doctor_doctor_setactivitytime", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L297", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setdegree", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L303", "weight": 1.0}, {"source": "entity_doctor_doctor_setdegree", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L303", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setinfo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L309", "weight": 1.0}, {"source": "entity_doctor_doctor_setinfo", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L309", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setimages", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L315", "weight": 1.0}, {"source": "entity_doctor_doctor_setimages", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L315", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setsocialmedia", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L321", "weight": 1.0}, {"source": "entity_doctor_doctor_setsocialmedia", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L321", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setdoctorrate", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L327", "weight": 1.0}, {"source": "entity_doctor_doctor_setdoctorrate", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L327", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setdoctorratepercentage", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L333", "weight": 1.0}, {"source": "entity_doctor_doctor_setdoctorratepercentage", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L333", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setactivedoctorappointment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L339", "weight": 1.0}, {"source": "entity_doctor_doctor_setactivedoctorappointment", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L339", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setrepresentationid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L345", "weight": 1.0}, {"source": "entity_doctor_doctor_setrepresentationid", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L345", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setnotificationmobile", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L351", "weight": 1.0}, {"source": "entity_doctor_doctor_setnotificationmobile", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L351", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setownerstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L357", "weight": 1.0}, {"source": "entity_doctor_doctor_setownerstatus", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L357", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setsource", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L363", "weight": 1.0}, {"source": "entity_doctor_doctor_setsource", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L363", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setsourceref", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L369", "weight": 1.0}, {"source": "entity_doctor_doctor_setsourceref", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L369", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setmanagedby", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L375", "weight": 1.0}, {"source": "entity_doctor_doctor_setmanagedby", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L375", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_setclaimedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L381", "weight": 1.0}, {"source": "entity_doctor_doctor_setclaimedat", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L381", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_transferownershipto", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L392", "weight": 1.0}, {"source": "entity_doctor_doctor_transferownershipto", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L392", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor_transferownershipto", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L392", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_touch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L402", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_computeschedulefields", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L411", "weight": 1.0}, {"source": "entity_doctor_doctor_computeschedulefields", "target": "weeklyschedule", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L411", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_computescheduleparts", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L428", "weight": 1.0}, {"source": "entity_doctor_doctor_computescheduleparts", "target": "weeklyschedule", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L428", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_getexperience", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L498", "weight": 1.0}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_tolistarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L506", "weight": 1.0}, {"source": "entity_doctor_doctor_tolistarray", "target": "weeklyschedule", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L506", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor", "target": "entity_doctor_doctor_todetailarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L530", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "weeklyschedule", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L530", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctor_doctor_setgender", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L282", "weight": 1.0}, {"source": "entity_doctor_doctor_setmedicalsystemcode", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L288", "weight": 1.0}, {"source": "entity_doctor_doctor_setmobilenumber", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L294", "weight": 1.0}, {"source": "entity_doctor_doctor_setactivitytime", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L300", "weight": 1.0}, {"source": "entity_doctor_doctor_setdegree", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L306", "weight": 1.0}, {"source": "entity_doctor_doctor_setinfo", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L312", "weight": 1.0}, {"source": "entity_doctor_doctor_setimages", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L318", "weight": 1.0}, {"source": "entity_doctor_doctor_setsocialmedia", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L324", "weight": 1.0}, {"source": "entity_doctor_doctor_setdoctorrate", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L330", "weight": 1.0}, {"source": "entity_doctor_doctor_setdoctorratepercentage", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L336", "weight": 1.0}, {"source": "entity_doctor_doctor_setactivedoctorappointment", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L342", "weight": 1.0}, {"source": "entity_doctor_doctor_setrepresentationid", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L348", "weight": 1.0}, {"source": "entity_doctor_doctor_setnotificationmobile", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L354", "weight": 1.0}, {"source": "entity_doctor_doctor_setownerstatus", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L360", "weight": 1.0}, {"source": "entity_doctor_doctor_setsource", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L366", "weight": 1.0}, {"source": "entity_doctor_doctor_setsourceref", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L372", "weight": 1.0}, {"source": "entity_doctor_doctor_setmanagedby", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L378", "weight": 1.0}, {"source": "entity_doctor_doctor_setclaimedat", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L384", "weight": 1.0}, {"source": "entity_doctor_doctor_transferownershipto", "target": "entity_doctor_doctor_touch", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L398", "weight": 1.0}, {"source": "entity_doctor_doctor_computeschedulefields", "target": "entity_doctor_doctor_computescheduleparts", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L413", "weight": 1.0}, {"source": "entity_doctor_doctor_tolistarray", "target": "entity_doctor_doctor_computeschedulefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L508", "weight": 1.0}, {"source": "entity_doctor_doctor_tolistarray", "target": "entity_doctor_doctor_getuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L517", "weight": 1.0}, {"source": "entity_doctor_doctor_tolistarray", "target": "entity_doctor_doctor_getid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L518", "weight": 1.0}, {"source": "entity_doctor_doctor_tolistarray", "target": "entity_doctor_doctor_getname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L519", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "entity_doctor_doctor_computeschedulefields", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L532", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "entity_doctor_doctor_getexperience", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L538", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "entity_doctor_doctor_getuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L544", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "entity_doctor_doctor_getid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L545", "weight": 1.0}, {"source": "entity_doctor_doctor_todetailarray", "target": "entity_doctor_doctor_getname", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/Doctor.php", "source_location": "L546", "weight": 1.0}], "raw_calls": [{"caller_nid": "entity_doctor_doctor_construct", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L145", "receiver": null}, {"caller_nid": "entity_doctor_doctor_construct", "callee": "Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L145", "receiver": null}, {"caller_nid": "entity_doctor_doctor_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L148", "receiver": null}, {"caller_nid": "entity_doctor_doctor_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L149", "receiver": null}, {"caller_nid": "entity_doctor_doctor_transferownershipto", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L397", "receiver": null}, {"caller_nid": "entity_doctor_doctor_touch", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L404", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computeschedulefields", "callee": "getMeta", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L417", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "getSetting", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L434", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L439", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "array_filter", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L439", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L441", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L443", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L445", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L445", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "array_filter", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L448", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L478", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "explode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L485", "receiver": null}, {"caller_nid": "entity_doctor_doctor_computescheduleparts", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L493", "receiver": null}, {"caller_nid": "entity_doctor_doctor_getexperience", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L503", "receiver": null}, {"caller_nid": "entity_doctor_doctor_tolistarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L516", "receiver": null}, {"caller_nid": "entity_doctor_doctor_tolistarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L520", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L543", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "getParent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L547", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "getParent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L547", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L548", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L552", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L556", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L562", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L562", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L562", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L564", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L568", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L569", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "getProvince", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L573", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "getProvince", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L573", "receiver": null}, {"caller_nid": "entity_doctor_doctor_todetailarray", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php", "source_location": "L574", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/4dfa2a1a2a64648f2fdec17dc619423ea3ae2b5eb36fabbca78cf6b02b044002.json b/graphify-out/cache/ast/v0.8.44/4dfa2a1a2a64648f2fdec17dc619423ea3ae2b5eb36fabbca78cf6b02b044002.json
new file mode 100644
index 00000000..e1889eb8
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/4dfa2a1a2a64648f2fdec17dc619423ea3ae2b5eb36fabbca78cf6b02b044002.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_claim_md", "label": "doctor-claim.md", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L1"}, {"id": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "label": "Doctor Profile Claim API (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u200c\u0634\u062f\u0647)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L1"}, {"id": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a", "label": "\u0686\u0631\u062e\u0647\u0654 \u0648\u0636\u0639\u06cc\u062a", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L12"}, {"id": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "label": "GET `/api/v1/doctor/{uuid}/claim-info`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L25"}, {"id": "api_doctor_claim_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L29"}, {"id": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "label": "POST `/api/v1/doctor/{uuid}/claim`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L40"}, {"id": "api_doctor_claim_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L46"}, {"id": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race", "label": "\u0645\u0631\u0627\u062d\u0644 \u0633\u0631\u0648\u0631 (\u0627\u062a\u0645\u06cc\u06a9/\u0636\u062f race)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L66"}, {"id": "api_doctor_claim_response_200_78", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L78"}, {"id": "api_doctor_claim_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L90"}, {"id": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer", "label": "POST `/api/v1/admin/doctors/{uuid}/transfer`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L105"}, {"id": "api_doctor_claim_get_api_v1_admin_doctor_claims", "label": "GET `/api/v1/admin/doctor-claims`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L113"}, {"id": "api_doctor_claim_response_200_paginated", "label": "Response `200` (paginated)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L122"}, {"id": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "env \u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L146"}, {"id": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627", "label": "\u062a\u0633\u062a\u200c\u0647\u0627", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L153"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_claim_md", "target": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L12", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L25", "weight": 1.0}, {"source": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "target": "api_doctor_claim_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L29", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L40", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L46", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L66", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_response_200_78", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L78", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L90", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L105", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_get_api_v1_admin_doctor_claims", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L113", "weight": 1.0}, {"source": "api_doctor_claim_get_api_v1_admin_doctor_claims", "target": "api_doctor_claim_response_200_paginated", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L122", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L146", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L153", "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/50fdf90004146a15e585ee236afc779dc00dfe185789afbfd9395d7a0d941b0f.json b/graphify-out/cache/ast/v0.8.44/50fdf90004146a15e585ee236afc779dc00dfe185789afbfd9395d7a0d941b0f.json
new file mode 100644
index 00000000..73f1365a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/50fdf90004146a15e585ee236afc779dc00dfe185789afbfd9395d7a0d941b0f.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "label": "DoctorImportService.php", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L1"}, {"id": "service_doctorimportservice_doctorimportservice", "label": "DoctorImportService", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23"}, {"id": "service_doctorimportservice_doctorimportservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28"}, {"id": "service_doctorimportservice_doctorimportservice_import", "label": ".import()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "doctorimportresult", "label": "DoctorImportResult", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "service_doctorimportservice_doctorimportservice_doimport", "label": ".doImport()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46"}, {"id": "service_doctorimportservice_doctorimportservice_syncrefcollection", "label": ".syncRefCollection()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120"}, {"id": "collection", "label": "Collection", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "city", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "province", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "uniqueconstraintviolationexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "managerregistry", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "service_doctorimportservice_doctorimportservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_import", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_syncrefcollection", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L37", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L56", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L105", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_doctorimportservice_doctorimportservice_import", "callee": "resetManager", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L41", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L48", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L51", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L52", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L53", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L55", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L56", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L59", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L63", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L69", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "md5", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L69", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L70", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L73", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L74", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L75", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L76", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L79", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L80", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L81", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L86", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "str_starts_with", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L88", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L88", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L89", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L90", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L95", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setManagedBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L96", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L96", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L97", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L97", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSourceRef", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L98", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L101", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L101", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L105", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getProvinces", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L106", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getCities", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L107", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L109", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L110", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L125", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L127", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L127", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "contains", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L128", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L129", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/5b9cc4215a15c89facbacc3e796147edcd9915d547d75fddeb9477a3636e0afd.json b/graphify-out/cache/ast/v0.8.44/5b9cc4215a15c89facbacc3e796147edcd9915d547d75fddeb9477a3636e0afd.json
new file mode 100644
index 00000000..7d283b1a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/5b9cc4215a15c89facbacc3e796147edcd9915d547d75fddeb9477a3636e0afd.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "label": "PersianTextTest.php", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L1"}, {"id": "shared_persiantexttest_persiantexttest", "label": "PersianTextTest", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8"}, {"id": "testcase", "label": "TestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "label": ".testArabicYehAndKafAreUnified()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L10"}, {"id": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "label": ".testHalfSpaceAndExtraWhitespace()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L15"}, {"id": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "label": ".testPersianAndArabicDigits()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L20"}, {"id": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "label": ".testStripDoctorTitle()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L26"}, {"id": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "label": ".testDifferentNamesStayDifferent()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L37"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "persiantext", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "testcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "shared_persiantexttest_persiantexttest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "testcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L10", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L15", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L20", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L26", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L37", "weight": 1.0}], "raw_calls": [{"caller_nid": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L12", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L12", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L17", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L17", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L22", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L22", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L23", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L23", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L31", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L31", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L33", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L33", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L34", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L34", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L39", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L39", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/5c7eab10c6736e17eccbecc792fe70dc4da0be7a80172bf3a1589a521258655a.json b/graphify-out/cache/ast/v0.8.44/5c7eab10c6736e17eccbecc792fe70dc4da0be7a80172bf3a1589a521258655a.json
new file mode 100644
index 00000000..4a57e0f9
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/5c7eab10c6736e17eccbecc792fe70dc4da0be7a80172bf3a1589a521258655a.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_repository_doctorclaimrequestrepository_php", "label": "DoctorClaimRequestRepository.php", "file_type": "code", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L1"}, {"id": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository", "label": "DoctorClaimRequestRepository", "file_type": "code", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L9"}, {"id": "serviceentityrepository", "label": "ServiceEntityRepository", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L11"}, {"id": "managerregistry", "label": "ManagerRegistry", "file_type": "code", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L11"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_repository_doctorclaimrequestrepository_php", "target": "doctorclaimrequest", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_repository_doctorclaimrequestrepository_php", "target": "serviceentityrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_repository_doctorclaimrequestrepository_php", "target": "managerregistry", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_repository_doctorclaimrequestrepository_php", "target": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L9", "weight": 1.0}, {"source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository", "target": "serviceentityrepository", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L9", "weight": 1.0}, {"source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository", "target": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L11", "weight": 1.0}, {"source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct", "target": "managerregistry", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L11", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [{"caller_nid": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorClaimRequestRepository.php", "source_location": "L13", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/63fc3658c738a551aa698760fa3651a8dd0379c104cddb01ce2e22a53085e1d0.json b/graphify-out/cache/ast/v0.8.44/63fc3658c738a551aa698760fa3651a8dd0379c104cddb01ce2e22a53085e1d0.json
new file mode 100644
index 00000000..2c0c666b
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/63fc3658c738a551aa698760fa3651a8dd0379c104cddb01ce2e22a53085e1d0.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711151000_php", "label": "Version20260711151000.php", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L1"}, {"id": "migrations_version20260711151000_version20260711151000", "label": "Version20260711151000", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L14"}, {"id": "abstractmigration", "label": "AbstractMigration", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "migrations_version20260711151000_version20260711151000_getdescription", "label": ".getDescription()", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L16"}, {"id": "migrations_version20260711151000_version20260711151000_up", "label": ".up()", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L21"}, {"id": "schema", "label": "Schema", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L21"}, {"id": "migrations_version20260711151000_version20260711151000_down", "label": ".down()", "file_type": "code", "source_file": "migrations/Version20260711151000.php", "source_location": "L46"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711151000_php", "target": "schema", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711151000_php", "target": "abstractmigration", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_migrations_version20260711151000_php", "target": "migrations_version20260711151000_version20260711151000", "relation": "contains", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L14", "weight": 1.0}, {"source": "migrations_version20260711151000_version20260711151000", "target": "abstractmigration", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L14", "weight": 1.0}, {"source": "migrations_version20260711151000_version20260711151000", "target": "migrations_version20260711151000_version20260711151000_getdescription", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L16", "weight": 1.0}, {"source": "migrations_version20260711151000_version20260711151000", "target": "migrations_version20260711151000_version20260711151000_up", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L21", "weight": 1.0}, {"source": "migrations_version20260711151000_version20260711151000_up", "target": "schema", "relation": "references", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L21", "weight": 1.0, "context": "parameter_type"}, {"source": "migrations_version20260711151000_version20260711151000", "target": "migrations_version20260711151000_version20260711151000_down", "relation": "method", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L46", "weight": 1.0}, {"source": "migrations_version20260711151000_version20260711151000_down", "target": "schema", "relation": "references", "confidence": "EXTRACTED", "source_file": "migrations/Version20260711151000.php", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}], "raw_calls": [{"caller_nid": "migrations_version20260711151000_version20260711151000_up", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711151000.php", "source_location": "L23", "receiver": null}, {"caller_nid": "migrations_version20260711151000_version20260711151000_up", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711151000.php", "source_location": "L42", "receiver": null}, {"caller_nid": "migrations_version20260711151000_version20260711151000_up", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711151000.php", "source_location": "L43", "receiver": null}, {"caller_nid": "migrations_version20260711151000_version20260711151000_down", "callee": "addSql", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711151000.php", "source_location": "L48", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/67087730cd4c223d14bf6645e1581b9bbf3510748777fb04c73184295924831a.json b/graphify-out/cache/ast/v0.8.44/67087730cd4c223d14bf6645e1581b9bbf3510748777fb04c73184295924831a.json
new file mode 100644
index 00000000..c2e17e84
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/67087730cd4c223d14bf6645e1581b9bbf3510748777fb04c73184295924831a.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_scenarios_crawler_md", "label": "crawler.md", "file_type": "document", "source_file": "docs/scenarios/crawler.md", "source_location": "L1"}], "edges": [], "input_tokens": 0, "output_tokens": 0}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/7ad4e252af7b57831ed829a66e9732c6a72b319df29113320a9f39c7e349063f.json b/graphify-out/cache/ast/v0.8.44/7ad4e252af7b57831ed829a66e9732c6a72b319df29113320a9f39c7e349063f.json
new file mode 100644
index 00000000..9817b2fc
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/7ad4e252af7b57831ed829a66e9732c6a72b319df29113320a9f39c7e349063f.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "label": "PersianTextTest.php", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L1"}, {"id": "shared_persiantexttest_persiantexttest", "label": "PersianTextTest", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8"}, {"id": "testcase", "label": "TestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "label": ".testArabicYehAndKafAreUnified()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L10"}, {"id": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "label": ".testHalfSpaceAndExtraWhitespace()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L15"}, {"id": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "label": ".testPersianAndArabicDigits()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L20"}, {"id": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "label": ".testStripDoctorTitle()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L26"}, {"id": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "label": ".testDifferentNamesStayDifferent()", "file_type": "code", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L33"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "persiantext", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "testcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_shared_persiantexttest_php", "target": "shared_persiantexttest_persiantexttest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "testcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L8", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L10", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L15", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L20", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L26", "weight": 1.0}, {"source": "shared_persiantexttest_persiantexttest", "target": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Shared/PersianTextTest.php", "source_location": "L33", "weight": 1.0}], "raw_calls": [{"caller_nid": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L12", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L12", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L17", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L17", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L22", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L22", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L23", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L23", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_teststripdoctortitle", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php", "source_location": "L35", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/7e99c6ac299dcc704fa82e35341b0d933f80d0290e6851e0c5d7e8c67a44bf4f.json b/graphify-out/cache/ast/v0.8.44/7e99c6ac299dcc704fa82e35341b0d933f80d0290e6851e0c5d7e8c67a44bf4f.json
new file mode 100644
index 00000000..73f1365a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/7e99c6ac299dcc704fa82e35341b0d933f80d0290e6851e0c5d7e8c67a44bf4f.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "label": "DoctorImportService.php", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L1"}, {"id": "service_doctorimportservice_doctorimportservice", "label": "DoctorImportService", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23"}, {"id": "service_doctorimportservice_doctorimportservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28"}, {"id": "service_doctorimportservice_doctorimportservice_import", "label": ".import()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "doctorimportresult", "label": "DoctorImportResult", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "service_doctorimportservice_doctorimportservice_doimport", "label": ".doImport()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46"}, {"id": "service_doctorimportservice_doctorimportservice_syncrefcollection", "label": ".syncRefCollection()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120"}, {"id": "collection", "label": "Collection", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "city", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "province", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "uniqueconstraintviolationexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "managerregistry", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "service_doctorimportservice_doctorimportservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_import", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_syncrefcollection", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L120", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L37", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L56", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L105", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_doctorimportservice_doctorimportservice_import", "callee": "resetManager", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L41", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L48", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L51", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L52", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L53", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L55", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L56", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L59", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L63", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L69", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "md5", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L69", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L70", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L73", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L74", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L75", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L76", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L79", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L80", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L81", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L86", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "str_starts_with", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L88", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L88", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L89", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L90", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L95", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setManagedBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L96", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L96", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L97", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L97", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSourceRef", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L98", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L101", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L101", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L105", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getProvinces", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L106", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getCities", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L107", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L109", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L110", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L125", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L127", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L127", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "contains", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L128", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L129", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/845cfe4823c1811705100b4f725eae2f651416f4217810bfcab77953aeff737c.json b/graphify-out/cache/ast/v0.8.44/845cfe4823c1811705100b4f725eae2f651416f4217810bfcab77953aeff737c.json
new file mode 100644
index 00000000..dc206852
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/845cfe4823c1811705100b4f725eae2f651416f4217810bfcab77953aeff737c.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "label": "ApiIrService.php", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L1"}, {"id": "service_apiirservice_apiirservice", "label": "ApiIrService", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L22"}, {"id": "service_apiirservice_apiirservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L24"}, {"id": "service_apiirservice_apiirservice_isconfigured", "label": ".isConfigured()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L31"}, {"id": "service_apiirservice_apiirservice_shahkarmatch", "label": ".shahkarMatch()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L39"}, {"id": "service_apiirservice_apiirservice_ibanmatch", "label": ".ibanMatch()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L58"}, {"id": "service_apiirservice_apiirservice_personinfo", "label": ".personInfo()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L79"}, {"id": "service_apiirservice_apiirservice_post", "label": ".post()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L102"}, {"id": "service_apiirservice_apiirservice_extractmatched", "label": ".extractMatched()", "file_type": "code", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L138"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "appexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "httpclientinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_service_apiirservice_php", "target": "service_apiirservice_apiirservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L22", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L24", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_isconfigured", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L31", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_shahkarmatch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L39", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_ibanmatch", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L58", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_personinfo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L79", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_post", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L102", "weight": 1.0}, {"source": "service_apiirservice_apiirservice", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L138", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_shahkarmatch", "target": "service_apiirservice_apiirservice_post", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L42", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_shahkarmatch", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L47", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_ibanmatch", "target": "service_apiirservice_apiirservice_post", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L60", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_ibanmatch", "target": "service_apiirservice_apiirservice_extractmatched", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L67", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_personinfo", "target": "service_apiirservice_apiirservice_post", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L81", "weight": 1.0}, {"source": "service_apiirservice_apiirservice_post", "target": "service_apiirservice_apiirservice_isconfigured", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Shared/Service/ApiIrService.php", "source_location": "L104", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_apiirservice_apiirservice_personinfo", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L87", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_personinfo", "callee": "filter_var", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L109", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "rtrim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L109", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getStatusCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L115", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L120", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L124", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L124", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L124", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getFile", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L124", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_post", "callee": "getLine", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L124", "receiver": null}, {"caller_nid": "service_apiirservice_apiirservice_extractmatched", "callee": "filter_var", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Service/ApiIrService.php", "source_location": "L144", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/855bb94d9ef0a255a34675bc2903b85fde5cdbefd420582b8d32abc2e9eda222.json b/graphify-out/cache/ast/v0.8.44/855bb94d9ef0a255a34675bc2903b85fde5cdbefd420582b8d32abc2e9eda222.json
new file mode 100644
index 00000000..261ab73e
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/855bb94d9ef0a255a34675bc2903b85fde5cdbefd420582b8d32abc2e9eda222.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "label": "DoctorClaimService.php", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L1"}, {"id": "service_doctorclaimservice_doctorclaimservice", "label": "DoctorClaimService", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L28"}, {"id": "service_doctorclaimservice_doctorclaimservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L34"}, {"id": "service_doctorclaimservice_doctorclaimservice_claim", "label": ".claim()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41"}, {"id": "doctor", "label": "Doctor", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41"}, {"id": "doctorclaimrequest", "label": "DoctorClaimRequest", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41"}, {"id": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "label": ".transferByAdmin()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L89"}, {"id": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "label": ".verifyIdentity()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L124"}, {"id": "service_doctorclaimservice_doctorclaimservice_finalize", "label": ".finalize()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L150"}, {"id": "service_doctorclaimservice_doctorclaimservice_revert", "label": ".revert()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L189"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "doctorclaimrequest", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "appexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "apiirservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "persiantext", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "smslog", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "smsservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "lockmode", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "loggerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorclaimservice_php", "target": "service_doctorclaimservice_doctorclaimservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L28", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L34", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_claim", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "doctorclaimrequest", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L41", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L89", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L89", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "target": "doctorclaimrequest", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L89", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L124", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L124", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L124", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_finalize", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L150", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_finalize", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_finalize", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_finalize", "target": "doctorclaimrequest", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L150", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice", "target": "service_doctorclaimservice_doctorclaimservice_revert", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L189", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_revert", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L189", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_revert", "target": "doctorclaimrequest", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L189", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "doctor", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L47", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L56", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L70", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "service_doctorclaimservice_doctorclaimservice_revert", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L72", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_claim", "target": "service_doctorclaimservice_doctorclaimservice_finalize", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L77", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "target": "doctor", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L92", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L98", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "target": "service_doctorclaimservice_doctorclaimservice_finalize", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L119", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_finalize", "target": "doctor", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L153", "weight": 1.0}, {"source": "service_doctorclaimservice_doctorclaimservice_revert", "target": "doctor", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorClaimService.php", "source_location": "L192", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "isConfigured", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L43", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L46", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L47", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L47", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L49", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L52", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L52", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L56", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L56", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L57", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L57", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L61", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L62", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L63", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getMessage", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L72", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "dispatchTemplate", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L80", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L80", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L81", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_claim", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L81", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L91", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L92", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L92", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L98", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L99", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L102", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L103", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L104", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L107", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L107", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L108", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L108", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L112", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L114", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_transferbyadmin", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L119", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "isConfigured", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L128", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "shahkarMatch", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L128", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L128", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "personInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L132", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L138", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L143", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L143", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_verifyidentity", "callee": "PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L144", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L152", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L153", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L153", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L155", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L159", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "setNationalCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L162", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "setNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L163", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L165", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "transferOwnershipTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L166", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "markCompleted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L167", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L174", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L174", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L175", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "count", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L176", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L176", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L177", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L178", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "info", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L181", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L182", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L183", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L184", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_finalize", "callee": "getVerificationMethod", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L185", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L191", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L192", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L192", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L193", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L194", "receiver": null}, {"caller_nid": "service_doctorclaimservice_doctorclaimservice_revert", "callee": "markFailed", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php", "source_location": "L196", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/8fac38bd8a0c0f92aebb516d01709532f0bec4ec9bfd2f2b44ae6d72dc15ac44.json b/graphify-out/cache/ast/v0.8.44/8fac38bd8a0c0f92aebb516d01709532f0bec4ec9bfd2f2b44ae6d72dc15ac44.json
new file mode 100644
index 00000000..abffa25a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/8fac38bd8a0c0f92aebb516d01709532f0bec4ec9bfd2f2b44ae6d72dc15ac44.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_import_md", "label": "doctor-import.md", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L1"}, {"id": "api_doctor_import_doctor_import_irimc_api", "label": "Doctor Import (IRIMC) API", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L1"}, {"id": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors", "label": "\u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a (\u0633\u062a\u0648\u0646\u200c\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f `doctors`)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L18"}, {"id": "api_doctor_import_idempotency", "label": "idempotency", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L32"}, {"id": "api_doctor_import_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L45"}, {"id": "api_doctor_import_response", "label": "Response", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L78"}, {"id": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f", "label": "`201 Created` (\u0633\u0627\u062e\u062a\u0647 \u0634\u062f)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L80"}, {"id": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f", "label": "`200 OK` (\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L85"}, {"id": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647", "label": "`200 OK` (\u0631\u062f \u0628\u0647\u200c\u062f\u0644\u06cc\u0644 \u062a\u0635\u0627\u062d\u0628\u200c\u0634\u062f\u0647)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L90"}, {"id": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "`422` (\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L95"}, {"id": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L102"}, {"id": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0627\u0646\u062a\u0642\u0627\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u0628\u0647 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L113"}, {"id": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "label": "\u06a9\u0627\u0631\u0628\u0631 \u0633\u06cc\u0633\u062a\u0645\u06cc \u0648 \u0686\u0631\u062e\u0647\u0654 \u0639\u0645\u0631", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L155"}, {"id": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha", "label": "\u0644\u0627\u06af\u06cc\u0646 \u0633\u0631\u0648\u06cc\u0633\u06cc (captcha)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L169"}, {"id": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc", "label": "backfill \u0646\u0642\u0634 \u062c\u0627\u0646\u0634\u06cc\u0646\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L183"}, {"id": "api_doctor_import_\u0627\u0635\u0644\u0627\u062d_\u0646\u0627\u0645_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631", "label": "\u0627\u0635\u0644\u0627\u062d \u0646\u0627\u0645 \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc (\u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L192"}, {"id": "api_doctor_import_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a", "label": "\u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L201"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_import_md", "target": "api_doctor_import_doctor_import_irimc_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L18", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_idempotency", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L32", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L45", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_response", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L78", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L80", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L85", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L90", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L95", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L102", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L113", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L155", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L169", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L183", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_\u0627\u0635\u0644\u0627\u062d_\u0646\u0627\u0645_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L192", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L201", "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/993a0f62aea970eb20d665eca9c20d252898656cc83ae37e726e9f60e686916b.json b/graphify-out/cache/ast/v0.8.44/993a0f62aea970eb20d665eca9c20d252898656cc83ae37e726e9f60e686916b.json
new file mode 100644
index 00000000..dbe37d3d
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/993a0f62aea970eb20d665eca9c20d252898656cc83ae37e726e9f60e686916b.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "label": "User.php", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L1"}, {"id": "entity_user_user", "label": "User", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L11"}, {"id": "userinterface", "label": "UserInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "passwordauthenticateduserinterface", "label": "PasswordAuthenticatedUserInterface", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "entity_user_user_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L55"}, {"id": "entity_user_user_getid", "label": ".getId()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L63"}, {"id": "entity_user_user_getuuid", "label": ".getUuid()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L64"}, {"id": "entity_user_user_getmobilenumber", "label": ".getMobileNumber()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L65"}, {"id": "entity_user_user_getemail", "label": ".getEmail()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L66"}, {"id": "entity_user_user_getrealname", "label": ".getRealName()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L67"}, {"id": "entity_user_user_getnationalcode", "label": ".getNationalCode()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L68"}, {"id": "entity_user_user_isnationalcodeverified", "label": ".isNationalCodeVerified()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L69"}, {"id": "entity_user_user_getstatus", "label": ".getStatus()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L70"}, {"id": "entity_user_user_getcreatedat", "label": ".getCreatedAt()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L71"}, {"id": "entity_user_user_getpassword", "label": ".getPassword()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L73"}, {"id": "entity_user_user_getpasswordhash", "label": ".getPasswordHash()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L74"}, {"id": "entity_user_user_getroles", "label": ".getRoles()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L76"}, {"id": "entity_user_user_getuseridentifier", "label": ".getUserIdentifier()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L85"}, {"id": "entity_user_user_erasecredentials", "label": ".eraseCredentials()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L86"}, {"id": "entity_user_user_setemail", "label": ".setEmail()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L88"}, {"id": "self", "label": "self", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L88"}, {"id": "entity_user_user_setrealname", "label": ".setRealName()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L89"}, {"id": "entity_user_user_setnationalcode", "label": ".setNationalCode()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L90"}, {"id": "entity_user_user_setnationalcodeverified", "label": ".setNationalCodeVerified()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L100"}, {"id": "entity_user_user_setpasswordhash", "label": ".setPasswordHash()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L101"}, {"id": "entity_user_user_setroles", "label": ".setRoles()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L102"}, {"id": "entity_user_user_setstatus", "label": ".setStatus()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L103"}, {"id": "entity_user_user_addrole", "label": ".addRole()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L105"}, {"id": "entity_user_user_hasrole", "label": ".hasRole()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L114"}, {"id": "entity_user_user_isstaff", "label": ".isStaff()", "file_type": "code", "source_file": "src/Auth/Entity/User.php", "source_location": "L119"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "mapping", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "userrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "passwordauthenticateduserinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "userinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_entity_user_php", "target": "entity_user_user", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L11", "weight": 1.0}, {"source": "entity_user_user", "target": "userinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L15", "weight": 1.0}, {"source": "entity_user_user", "target": "passwordauthenticateduserinterface", "relation": "implements", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L15", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L55", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L63", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getuuid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L64", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getmobilenumber", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L65", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getemail", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L66", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getrealname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L67", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getnationalcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L68", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_isnationalcodeverified", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L69", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L70", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getcreatedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L71", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getpassword", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L73", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getpasswordhash", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L74", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getroles", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L76", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_getuseridentifier", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L85", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_erasecredentials", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L86", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_setemail", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L88", "weight": 1.0}, {"source": "entity_user_user_setemail", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L88", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setrealname", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L89", "weight": 1.0}, {"source": "entity_user_user_setrealname", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L89", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setnationalcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L90", "weight": 1.0}, {"source": "entity_user_user_setnationalcode", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L90", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setnationalcodeverified", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L100", "weight": 1.0}, {"source": "entity_user_user_setnationalcodeverified", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L100", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setpasswordhash", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L101", "weight": 1.0}, {"source": "entity_user_user_setpasswordhash", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L101", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setroles", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L102", "weight": 1.0}, {"source": "entity_user_user_setroles", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L102", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_setstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L103", "weight": 1.0}, {"source": "entity_user_user_setstatus", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L103", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_addrole", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L105", "weight": 1.0}, {"source": "entity_user_user_addrole", "target": "self", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L105", "weight": 1.0, "context": "return_type"}, {"source": "entity_user_user", "target": "entity_user_user_hasrole", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L114", "weight": 1.0}, {"source": "entity_user_user", "target": "entity_user_user_isstaff", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L119", "weight": 1.0}, {"source": "entity_user_user_hasrole", "target": "entity_user_user_getroles", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L116", "weight": 1.0}, {"source": "entity_user_user_isstaff", "target": "entity_user_user_hasrole", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Auth/Entity/User.php", "source_location": "L121", "weight": 1.0}], "raw_calls": [{"caller_nid": "entity_user_user_construct", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L57", "receiver": null}, {"caller_nid": "entity_user_user_construct", "callee": "Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L57", "receiver": null}, {"caller_nid": "entity_user_user_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L59", "receiver": null}, {"caller_nid": "entity_user_user_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L60", "receiver": null}, {"caller_nid": "entity_user_user_getroles", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L79", "receiver": null}, {"caller_nid": "entity_user_user_getroles", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L82", "receiver": null}, {"caller_nid": "entity_user_user_setrealname", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L89", "receiver": null}, {"caller_nid": "entity_user_user_setnationalcode", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L97", "receiver": null}, {"caller_nid": "entity_user_user_setnationalcodeverified", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L100", "receiver": null}, {"caller_nid": "entity_user_user_setpasswordhash", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L101", "receiver": null}, {"caller_nid": "entity_user_user_setroles", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L102", "receiver": null}, {"caller_nid": "entity_user_user_setstatus", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L103", "receiver": null}, {"caller_nid": "entity_user_user_addrole", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L107", "receiver": null}, {"caller_nid": "entity_user_user_addrole", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L109", "receiver": null}, {"caller_nid": "entity_user_user_hasrole", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Entity/User.php", "source_location": "L116", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/9e060b9aaca355841ce3bf66df598bd47c22e6fba1828fc3f0fe7ed99417b8cd.json b/graphify-out/cache/ast/v0.8.44/9e060b9aaca355841ce3bf66df598bd47c22e6fba1828fc3f0fe7ed99417b8cd.json
new file mode 100644
index 00000000..9909107e
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/9e060b9aaca355841ce3bf66df598bd47c22e6fba1828fc3f0fe7ed99417b8cd.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "label": "DoctorImportService.php", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L1"}, {"id": "service_doctorimportservice_doctorimportservice", "label": "DoctorImportService", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23"}, {"id": "service_doctorimportservice_doctorimportservice_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28"}, {"id": "service_doctorimportservice_doctorimportservice_import", "label": ".import()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "doctorimportresult", "label": "DoctorImportResult", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34"}, {"id": "service_doctorimportservice_doctorimportservice_doimport", "label": ".doImport()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46"}, {"id": "service_doctorimportservice_doctorimportservice_syncrefcollection", "label": ".syncRefCollection()", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L118"}, {"id": "collection", "label": "Collection", "file_type": "code", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L118"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "city", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "province", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "uniqueconstraintviolationexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "managerregistry", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_service_doctorimportservice_php", "target": "service_doctorimportservice_doctorimportservice", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L23", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L28", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_import", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L34", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "doctorimportresult", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L46", "weight": 1.0, "context": "return_type"}, {"source": "service_doctorimportservice_doctorimportservice", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L118", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_syncrefcollection", "target": "collection", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L118", "weight": 1.0, "context": "parameter_type"}, {"source": "service_doctorimportservice_doctorimportservice_import", "target": "service_doctorimportservice_doctorimportservice_doimport", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L37", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "user", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L54", "weight": 1.0}, {"source": "service_doctorimportservice_doctorimportservice_doimport", "target": "service_doctorimportservice_doctorimportservice_syncrefcollection", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Service/DoctorImportService.php", "source_location": "L103", "weight": 1.0}], "raw_calls": [{"caller_nid": "service_doctorimportservice_doctorimportservice_import", "callee": "resetManager", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L41", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "wrapInTransaction", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L48", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L49", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L50", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L51", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L53", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L54", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L57", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L61", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L67", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "md5", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L67", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L68", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L71", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L72", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L73", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L74", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L77", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L78", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L79", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L84", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "str_starts_with", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L86", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L86", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L87", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "addRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L88", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L92", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L93", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setManagedBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L94", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L95", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L95", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setSourceRef", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L96", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L98", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L98", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L99", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L99", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L100", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L103", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getProvinces", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L104", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "getCities", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L105", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L107", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_doimport", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L108", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L123", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L125", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L125", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "contains", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L126", "receiver": null}, {"caller_nid": "service_doctorimportservice_doctorimportservice_syncrefcollection", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php", "source_location": "L127", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/af59e4c78dd2af8b4fa27e171650c7e12f7b0c656b944634bdb38b2a3b4d0fa3.json b/graphify-out/cache/ast/v0.8.44/af59e4c78dd2af8b4fa27e171650c7e12f7b0c656b944634bdb38b2a3b4d0fa3.json
new file mode 100644
index 00000000..84a94a7a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/af59e4c78dd2af8b4fa27e171650c7e12f7b0c656b944634bdb38b2a3b4d0fa3.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_util_persiantext_php", "label": "PersianText.php", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L1"}, {"id": "util_persiantext_persiantext", "label": "PersianText", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L12"}, {"id": "util_persiantext_persiantext_normalize", "label": ".normalize()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L14"}, {"id": "util_persiantext_persiantext_samename", "label": ".sameName()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L40"}, {"id": "util_persiantext_persiantext_stripdoctortitle", "label": ".stripDoctorTitle()", "file_type": "code", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L46"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_shared_util_persiantext_php", "target": "util_persiantext_persiantext", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L12", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_normalize", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L14", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_samename", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L40", "weight": 1.0}, {"source": "util_persiantext_persiantext", "target": "util_persiantext_persiantext_stripdoctortitle", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Shared/Util/PersianText.php", "source_location": "L46", "weight": 1.0}], "raw_calls": [{"caller_nid": "util_persiantext_persiantext_normalize", "callee": "class_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L16", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "\\Normalizer", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L17", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "strtr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L20", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "strtr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L31", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "array_combine", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L31", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L36", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_normalize", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L36", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_samename", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L42", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_samename", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L42", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L48", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L50", "receiver": null}, {"caller_nid": "util_persiantext_persiantext_stripdoctortitle", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php", "source_location": "L50", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/b1d57632d5457ef2f35dd2795e67392c01372e295862beed0ebae8027935f879.json b/graphify-out/cache/ast/v0.8.44/b1d57632d5457ef2f35dd2795e67392c01372e295862beed0ebae8027935f879.json
new file mode 100644
index 00000000..83084ac5
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/b1d57632d5457ef2f35dd2795e67392c01372e295862beed0ebae8027935f879.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "label": "SystemOwnerCommand.php", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L1"}, {"id": "command_systemownercommand_systemownercommand", "label": "SystemOwnerCommand", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L25"}, {"id": "command", "label": "Command", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "command_systemownercommand_systemownercommand_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L31"}, {"id": "command_systemownercommand_systemownercommand_configure", "label": ".configure()", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L38"}, {"id": "command_systemownercommand_systemownercommand_execute", "label": ".execute()", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47"}, {"id": "inputinterface", "label": "InputInterface", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47"}, {"id": "outputinterface", "label": "OutputInterface", "file_type": "code", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "ascommand", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "command", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "inputargument", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "inputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "inputoption", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "outputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "symfonystyle", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "userpasswordhasherinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_auth_command_systemownercommand_php", "target": "command_systemownercommand_systemownercommand", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L25", "weight": 1.0}, {"source": "command_systemownercommand_systemownercommand", "target": "command", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L29", "weight": 1.0}, {"source": "command_systemownercommand_systemownercommand", "target": "command_systemownercommand_systemownercommand_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L31", "weight": 1.0}, {"source": "command_systemownercommand_systemownercommand", "target": "command_systemownercommand_systemownercommand_configure", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L38", "weight": 1.0}, {"source": "command_systemownercommand_systemownercommand", "target": "command_systemownercommand_systemownercommand_execute", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47", "weight": 1.0}, {"source": "command_systemownercommand_systemownercommand_execute", "target": "inputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "command_systemownercommand_systemownercommand_execute", "target": "outputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "command_systemownercommand_systemownercommand_execute", "target": "command", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Auth/Command/SystemOwnerCommand.php", "source_location": "L57", "weight": 1.0}], "raw_calls": [{"caller_nid": "command_systemownercommand_systemownercommand_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L35", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L40", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L40", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L40", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_configure", "callee": "addArgument", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L40", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getArgument", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L50", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L51", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L52", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L53", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L56", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L60", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L61", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L66", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L68", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L75", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L76", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L77", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "array_diff", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L77", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "note", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L78", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L80", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L83", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L83", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L83", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setPasswordHash", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L86", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "hashPassword", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L86", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L91", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L93", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L95", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L98", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L99", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L101", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L101", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L105", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L106", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L107", "receiver": null}, {"caller_nid": "command_systemownercommand_systemownercommand_execute", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php", "source_location": "L107", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/b7801eae1d8e5515a35c3c99e9d2858204c660975c0e17f35ec38a0d1afcfc5c.json b/graphify-out/cache/ast/v0.8.44/b7801eae1d8e5515a35c3c99e9d2858204c660975c0e17f35ec38a0d1afcfc5c.json
new file mode 100644
index 00000000..9cd03bb9
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/b7801eae1d8e5515a35c3c99e9d2858204c660975c0e17f35ec38a0d1afcfc5c.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "label": "PurgeDoctorsCommand.php", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L1"}, {"id": "command_purgedoctorscommand_purgedoctorscommand", "label": "PurgeDoctorsCommand", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L22"}, {"id": "command", "label": "Command", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "command_purgedoctorscommand_purgedoctorscommand_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L36"}, {"id": "command_purgedoctorscommand_purgedoctorscommand_configure", "label": ".configure()", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L41"}, {"id": "command_purgedoctorscommand_purgedoctorscommand_execute", "label": ".execute()", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47"}, {"id": "inputinterface", "label": "InputInterface", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47"}, {"id": "outputinterface", "label": "OutputInterface", "file_type": "code", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "connection", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "ascommand", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "command", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "inputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "inputoption", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "outputinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "symfonystyle", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_command_purgedoctorscommand_php", "target": "command_purgedoctorscommand_purgedoctorscommand", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L22", "weight": 1.0}, {"source": "command_purgedoctorscommand_purgedoctorscommand", "target": "command", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L26", "weight": 1.0}, {"source": "command_purgedoctorscommand_purgedoctorscommand", "target": "command_purgedoctorscommand_purgedoctorscommand_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L36", "weight": 1.0}, {"source": "command_purgedoctorscommand_purgedoctorscommand", "target": "command_purgedoctorscommand_purgedoctorscommand_configure", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L41", "weight": 1.0}, {"source": "command_purgedoctorscommand_purgedoctorscommand", "target": "command_purgedoctorscommand_purgedoctorscommand_execute", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47", "weight": 1.0}, {"source": "command_purgedoctorscommand_purgedoctorscommand_execute", "target": "inputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "command_purgedoctorscommand_purgedoctorscommand_execute", "target": "outputinterface", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L47", "weight": 1.0, "context": "parameter_type"}, {"source": "command_purgedoctorscommand_purgedoctorscommand_execute", "target": "command", "relation": "references_constant", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L54", "weight": 1.0}], "raw_calls": [{"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_construct", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L38", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L43", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_configure", "callee": "addOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L44", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L50", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "getOption", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L52", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L53", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "section", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L57", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L61", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "table", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L63", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "warning", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L66", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "executeStatement", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L70", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "executeStatement", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L73", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "text", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L74", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L74", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "executeStatement", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L77", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "text", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L80", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "sprintf", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L80", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "executeStatement", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L82", "receiver": null}, {"caller_nid": "command_purgedoctorscommand_purgedoctorscommand_execute", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php", "source_location": "L85", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/c18c03b15b41f7a206dc90d63428de7fbcefdb1cab1ef0e6b2202fe4ccda553e.json b/graphify-out/cache/ast/v0.8.44/c18c03b15b41f7a206dc90d63428de7fbcefdb1cab1ef0e6b2202fe4ccda553e.json
new file mode 100644
index 00000000..f2673cf1
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/c18c03b15b41f7a206dc90d63428de7fbcefdb1cab1ef0e6b2202fe4ccda553e.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "label": "DoctorImportTest.php", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L1"}, {"id": "doctor_doctorimporttest_doctorimporttest", "label": "DoctorImportTest", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13"}, {"id": "apitestcase", "label": "ApiTestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "doctor_doctorimporttest_doctorimporttest_importpayload", "label": ".importPayload()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15"}, {"id": "doctor_doctorimporttest_doctorimporttest_freshcode", "label": ".freshCode()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "label": ".testImportCreatesUnclaimedDoctorWithSurrogateUser()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33"}, {"id": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "label": ".testReimportUpdatesInsteadOfDuplicating()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L58"}, {"id": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "label": ".testClaimedDoctorIsNeverOverwritten()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L83"}, {"id": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "label": ".testValidationErrors()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L110"}, {"id": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "label": ".testNonAdminIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "label": ".testImporterRoleCanImportButNothingElse()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L128"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "apitestcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor_doctorimporttest_doctorimporttest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "apitestcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L58", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L83", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L110", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L128", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L36", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L38", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L61", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L63", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L86", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L88", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L114", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L124", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L124", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L132", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L132", "weight": 1.0}], "raw_calls": [{"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L38", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L41", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L42", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertNotEmpty", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L43", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L50", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L50", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L52", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertStringStartsWith", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L54", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L54", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L55", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L55", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L63", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L68", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "count", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L74", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L74", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L78", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L78", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L80", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L80", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L85", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L88", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L92", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "transferOwnershipTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L94", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L95", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L99", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L104", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L105", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L105", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L106", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L106", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L107", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L107", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L112", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L114", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L117", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L118", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L118", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L123", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L125", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L125", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L130", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L132", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L135", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L139", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L139", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/c50066c8bd8a380b1536fe3928bd63f7687b5ba6fe066b54b0ea45f4c44a7422.json b/graphify-out/cache/ast/v0.8.44/c50066c8bd8a380b1536fe3928bd63f7687b5ba6fe066b54b0ea45f4c44a7422.json
new file mode 100644
index 00000000..e89476ec
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/c50066c8bd8a380b1536fe3928bd63f7687b5ba6fe066b54b0ea45f4c44a7422.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "label": "DoctorClaimTest.php", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L1"}, {"id": "doctor_doctorclaimtest_doctorclaimtest", "label": "DoctorClaimTest", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15"}, {"id": "apitestcase", "label": "ApiTestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "doctor_doctorclaimtest_doctorclaimtest_setup", "label": ".setUp()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L17"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "label": ".mockApiIr()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L23"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "label": ".importUnclaimedDoctor()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L32"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "label": ".claimBody()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L44"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "label": ".testSuccessfulClaimTransfersOwnershipAndDeletesSurrogate()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L55"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "label": ".testNameMismatchRevertsToUnclaimed()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L85"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "label": ".testDeceasedPersonIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L105"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "label": ".testShahkarMismatchIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L116"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "label": ".testAlreadyClaimedIsConflict()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L127"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "label": ".testUserWhoAlreadyOwnsADoctorCannotClaim()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L141"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "label": ".testValidationErrors()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L159"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "label": ".testMobileMismatchIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L172"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "label": ".testOwnerCanDeleteOwnProfileButOthersCannot()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L184"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "label": ".testUnclaimedProfileNotDeletableByRandomUser()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L205"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "label": ".testClaimInfoIsPublic()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L213"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "label": ".testAdminTransferHappyPath()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L224"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "label": ".testAdminTransferRequiresAdmin()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L246"}, {"id": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "label": ".testClaimRequiresAuthentication()", "file_type": "code", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L254"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctorclaimrequest", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "apiirservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "apitestcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorclaimtest_php", "target": "doctor_doctorclaimtest_doctorclaimtest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "apitestcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_setup", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L17", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L23", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L32", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L44", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L55", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L85", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L105", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L116", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L127", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L141", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L159", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L172", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L184", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L205", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L213", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L224", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L246", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest", "target": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L254", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L57", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L58", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L64", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L87", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L88", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L91", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L107", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L108", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L111", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L118", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L119", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L122", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L129", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L130", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L133", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L143", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L145", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L148", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L161", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L162", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L174", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L175", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L178", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L186", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L187", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L189", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L207", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L215", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L226", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L248", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L256", "weight": 1.0}, {"source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorClaimTest.php", "source_location": "L257", "weight": 1.0}], "raw_calls": [{"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_setup", "callee": "parent", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L19", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_setup", "callee": "disableReboot", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L20", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "createMock", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L25", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L26", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L26", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L27", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L27", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "willReturn", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "method", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L28", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_mockapiir", "callee": "static", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L29", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L34", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L36", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "callee": "str_pad", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_claimbody", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L60", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L61", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L61", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L62", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L64", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L66", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L66", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L67", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L69", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L71", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L73", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getManagedBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L73", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "isNationalCodeVerified", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L79", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L81", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L81", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L90", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L93", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L95", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L96", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L96", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L97", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L97", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertStringStartsWith", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L100", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L100", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "assertNotNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed", "callee": "getFailureReason", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L110", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L111", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L113", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L113", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L121", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L122", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L124", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L132", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L134", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L134", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L137", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L138", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L147", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L148", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L149", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L149", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L151", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L152", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L152", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L154", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L155", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L155", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L156", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L156", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L163", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L165", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L166", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L166", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L168", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L169", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L169", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L176", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L180", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L181", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L181", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L188", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L189", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L190", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L190", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L193", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L194", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L195", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L195", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L198", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L199", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L199", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L201", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "assertNull", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L202", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L202", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L202", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L208", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L209", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L210", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L210", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L217", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L218", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L218", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L219", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L219", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "getResponse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L219", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L220", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L221", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L227", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "str_pad", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L228", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L228", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L230", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L232", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L232", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L233", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L235", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L236", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L236", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L237", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L237", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L238", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L238", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L238", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L239", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L239", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L239", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L242", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L243", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L243", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L249", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L250", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L251", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L251", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "request", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L257", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "json_encode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L257", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L258", "receiver": null}, {"caller_nid": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php", "source_location": "L258", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/d2a0fce35061ffa8482d6aafc624ed886cd20471c5e2b52486bd7e35a0b045eb.json b/graphify-out/cache/ast/v0.8.44/d2a0fce35061ffa8482d6aafc624ed886cd20471c5e2b52486bd7e35a0b045eb.json
new file mode 100644
index 00000000..060b140a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/d2a0fce35061ffa8482d6aafc624ed886cd20471c5e2b52486bd7e35a0b045eb.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "label": "DoctorClaimController.php", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L1"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller", "label": "DoctorClaimController", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L19"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L22"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "label": ".claimInfo()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L29"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L29"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "label": ".claim()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "label": ".transfer()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L115"}, {"id": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "label": ".claimsList()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L158"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "doctorrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "doctorclaimservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "toomanyrequestshttpexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "ratelimiterfactory", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorclaimcontroller_php", "target": "controller_doctorclaimcontroller_doctorclaimcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L19", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L20", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L22", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L29", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L29", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L51", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L115", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L115", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L115", "weight": 1.0, "context": "return_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller", "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L158", "weight": 1.0}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L158", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorClaimController.php", "source_location": "L158", "weight": 1.0, "context": "return_type"}], "raw_calls": [{"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L40", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L42", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L45", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L46", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L47", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "create", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L79", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L79", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "consume", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L80", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "isAccepted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L81", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getTimestamp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getRetryAfter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L82", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L85", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L87", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_replace", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L91", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "\\App\\Shared\\Util\\PersianText", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L93", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L96", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L99", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L100", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L103", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L108", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claim", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "findByUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L137", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L139", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L142", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L144", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L145", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "transferByAdmin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L148", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L150", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L151", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L152", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L173", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L191", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L192", "receiver": null}, {"caller_nid": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php", "source_location": "L192", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/d2aac83cae844b48d2461796bd4af8c2bff124fde3f67c3936c44104885c2bb6.json b/graphify-out/cache/ast/v0.8.44/d2aac83cae844b48d2461796bd4af8c2bff124fde3f67c3936c44104885c2bb6.json
new file mode 100644
index 00000000..609a7570
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/d2aac83cae844b48d2461796bd4af8c2bff124fde3f67c3936c44104885c2bb6.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "label": "DoctorClaimRequest.php", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L1"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest", "label": "DoctorClaimRequest", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L15"}, {"id": "doctor", "label": "Doctor", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L32"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L36"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L61"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile", "label": ".maskMobile()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L72"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted", "label": ".markCompleted()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L79"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_markfailed", "label": ".markFailed()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L85"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getid", "label": ".getId()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L92"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getuuid", "label": ".getUuid()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L93"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor", "label": ".getDoctor()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L94"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getuser", "label": ".getUser()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L95"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getstatus", "label": ".getStatus()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L96"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getfailurereason", "label": ".getFailureReason()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L97"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getverificationmethod", "label": ".getVerificationMethod()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L98"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getcreatedat", "label": ".getCreatedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L99"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_getcompletedat", "label": ".getCompletedAt()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L100"}, {"id": "entity_doctorclaimrequest_doctorclaimrequest_toarray", "label": ".toArray()", "file_type": "code", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L102"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "target": "doctorclaimrequestrepository", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "target": "mapping", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "target": "uuid", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_entity_doctorclaimrequest_php", "target": "entity_doctorclaimrequest_doctorclaimrequest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L15", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L32", "weight": 1.0, "context": "field"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L36", "weight": 1.0, "context": "field"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L61", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest_construct", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L61", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest_construct", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L61", "weight": 1.0, "context": "parameter_type"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L72", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L79", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_markfailed", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L85", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L92", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getuuid", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L93", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L94", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor", "target": "doctor", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L94", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L95", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest_getuser", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L95", "weight": 1.0, "context": "return_type"}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L96", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getfailurereason", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L97", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getverificationmethod", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L98", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getcreatedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L99", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_getcompletedat", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L100", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest", "target": "entity_doctorclaimrequest_doctorclaimrequest_toarray", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L102", "weight": 1.0}, {"source": "entity_doctorclaimrequest_doctorclaimrequest_toarray", "target": "entity_doctorclaimrequest_doctorclaimrequest_getuuid", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L107", "weight": 1.0}], "raw_calls": [{"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_construct", "callee": "toRfc4122", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L63", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_construct", "callee": "Uuid", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L63", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_construct", "callee": "self", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L67", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_construct", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L69", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile", "callee": "strlen", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L74", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile", "callee": "substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile", "callee": "substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_markfailed", "callee": "mb_substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L88", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_markfailed", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L89", "receiver": null}, {"caller_nid": "entity_doctorclaimrequest_doctorclaimrequest_toarray", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php", "source_location": "L107", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/d8a425a0281fb8895791c85f3003aa62ab55e84ff1de2a5a171649bf9f4e5818.json b/graphify-out/cache/ast/v0.8.44/d8a425a0281fb8895791c85f3003aa62ab55e84ff1de2a5a171649bf9f4e5818.json
new file mode 100644
index 00000000..5b65d6b7
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/d8a425a0281fb8895791c85f3003aa62ab55e84ff1de2a5a171649bf9f4e5818.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_admin_md", "label": "admin.md", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1"}, {"id": "api_admin_admin_api", "label": "Admin API", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1"}, {"id": "api_admin_dashboard", "label": "Dashboard", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L9"}, {"id": "api_admin_get_api_v1_admin_dashboard_stats", "label": "GET `/api/v1/admin/dashboard/stats`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L11"}, {"id": "api_admin_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L17"}, {"id": "api_admin_get_api_v1_admin_dashboard_charts", "label": "GET `/api/v1/admin/dashboard/charts`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L41"}, {"id": "api_admin_response_200_47", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L47"}, {"id": "api_admin_get_api_v1_admin_dashboard_recent", "label": "GET `/api/v1/admin/dashboard/recent`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L74"}, {"id": "api_admin_response_200_80", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L80"}, {"id": "api_admin_user_management", "label": "User Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L118"}, {"id": "api_admin_get_api_v1_admin_users", "label": "GET `/api/v1/admin/users`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L120"}, {"id": "api_admin_query_parameters", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L126"}, {"id": "api_admin_response_200_136", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L136"}, {"id": "api_admin_get_api_v1_admin_users_uuid", "label": "GET `/api/v1/admin/users/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L156"}, {"id": "api_admin_response_200_162", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L162"}, {"id": "api_admin_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L179"}, {"id": "api_admin_get_api_v1_admin_users_stats", "label": "GET `/api/v1/admin/users/stats`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L186"}, {"id": "api_admin_response_200_192", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L192"}, {"id": "api_admin_put_api_v1_admin_users_uuid", "label": "PUT `/api/v1/admin/users/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L209"}, {"id": "api_admin_request_body_application_json", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L215"}, {"id": "api_admin_response_200_223", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L223"}, {"id": "api_admin_put_api_v1_admin_users_uuid_role", "label": "PUT `/api/v1/admin/users/{uuid}/role`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L228"}, {"id": "api_admin_request_body_application_json_234", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L234"}, {"id": "api_admin_response_200_245", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L245"}, {"id": "api_admin_post_api_v1_admin_users_uuid_status", "label": "POST `/api/v1/admin/users/{uuid}/status`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L252"}, {"id": "api_admin_response_200_258", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L258"}, {"id": "api_admin_delete_api_v1_admin_users_uuid", "label": "DELETE `/api/v1/admin/users/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L265"}, {"id": "api_admin_response_200_271", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L271"}, {"id": "api_admin_errors_276", "label": "Errors", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L276"}, {"id": "api_admin_doctor_management", "label": "Doctor Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L283"}, {"id": "api_admin_post_api_v1_admin_doctors", "label": "POST `/api/v1/admin/doctors`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L287"}, {"id": "api_admin_request_body_application_json_293", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L293"}, {"id": "api_admin_errors_302", "label": "Errors", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L302"}, {"id": "api_admin_post_api_v1_admin_clinic", "label": "POST `/api/v1/admin/clinic`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L310"}, {"id": "api_admin_request_body_application_json_316", "label": "Request Body (`application/json`)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L316"}, {"id": "api_admin_errors_322", "label": "Errors", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L322"}, {"id": "api_admin_get_api_v1_admin_doctors", "label": "GET `/api/v1/admin/doctors`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L331"}, {"id": "api_admin_query_parameters_337", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L337"}, {"id": "api_admin_response_200_349", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L349"}, {"id": "api_admin_get_api_v1_admin_doctors_stats", "label": "GET `/api/v1/admin/doctors/stats`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L369"}, {"id": "api_admin_response_200_375", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L375"}, {"id": "api_admin_post_api_v1_admin_doctors_uuid_status", "label": "POST `/api/v1/admin/doctors/{uuid}/status`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L392"}, {"id": "api_admin_response_200_398", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L398"}, {"id": "api_admin_clinic_management", "label": "Clinic Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L405"}, {"id": "api_admin_get_api_v1_admin_clinics", "label": "GET `/api/v1/admin/clinics`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L407"}, {"id": "api_admin_query_parameters_413", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L413"}, {"id": "api_admin_response_200_421", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L421"}, {"id": "api_admin_patch_api_v1_admin_clinic_uuid_status", "label": "PATCH `/api/v1/admin/clinic/{uuid}/status`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L441"}, {"id": "api_admin_response_200_447", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L447"}, {"id": "api_admin_errors_452", "label": "Errors", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L452"}, {"id": "api_admin_delete_api_v1_admin_clinic_uuid", "label": "DELETE `/api/v1/admin/clinic/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L459"}, {"id": "api_admin_response_200_467", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L467"}, {"id": "api_admin_appointment_management", "label": "Appointment Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L474"}, {"id": "api_admin_get_api_v1_admin_appointments_today_stats", "label": "GET `/api/v1/admin/appointments/today-stats`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L476"}, {"id": "api_admin_query_parameters_482", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L482"}, {"id": "api_admin_response_200_487", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L487"}, {"id": "api_admin_get_api_v1_admin_appointments", "label": "GET `/api/v1/admin/appointments`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L502"}, {"id": "api_admin_query_parameters_508", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L508"}, {"id": "api_admin_response_200_518", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L518"}, {"id": "api_admin_post_api_v1_admin_appointment", "label": "POST `/api/v1/admin/appointment`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L547"}, {"id": "api_admin_request_body", "label": "Request Body", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L553"}, {"id": "api_admin_response_201", "label": "Response `201`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L567"}, {"id": "api_admin_error_responses", "label": "Error Responses", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L580"}, {"id": "api_admin_payment_management", "label": "Payment Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L589"}, {"id": "api_admin_get_api_v1_admin_payments", "label": "GET `/api/v1/admin/payments`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L591"}, {"id": "api_admin_query_parameters_597", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L597"}, {"id": "api_admin_query_parameters_\u062a\u06a9\u0645\u06cc\u0644", "label": "Query Parameters (\u062a\u06a9\u0645\u06cc\u0644)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L604"}, {"id": "api_admin_response_200_609", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L609"}, {"id": "api_admin_get_api_v1_admin_payments_uuid", "label": "GET `/api/v1/admin/payments/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L633"}, {"id": "api_admin_response_200_639", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L639"}, {"id": "api_admin_post_api_v1_admin_payments_uuid_refund", "label": "POST `/api/v1/admin/payments/{uuid}/refund`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L663"}, {"id": "api_admin_post_api_v1_admin_payments_uuid_reverse", "label": "POST `/api/v1/admin/payments/{uuid}/reverse`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L681"}, {"id": "api_admin_errors_payment_refund_reverse_detail", "label": "Errors (payment refund/reverse/detail)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L687"}, {"id": "api_admin_settlement_management", "label": "Settlement Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L695"}, {"id": "api_admin_get_api_v1_admin_settlements", "label": "GET `/api/v1/admin/settlements`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L697"}, {"id": "api_admin_query_parameters_703", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L703"}, {"id": "api_admin_response_200_710", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L710"}, {"id": "api_admin_representation_management", "label": "Representation Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L732"}, {"id": "api_admin_get_api_v1_admin_representations", "label": "GET `/api/v1/admin/representations`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L734"}, {"id": "api_admin_query_parameters_740", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L740"}, {"id": "api_admin_response_200_748", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L748"}, {"id": "api_admin_secretary_management", "label": "Secretary Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L776"}, {"id": "api_admin_get_api_v1_admin_secretaries", "label": "GET `/api/v1/admin/secretaries`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L778"}, {"id": "api_admin_query_parameters_784", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L784"}, {"id": "api_admin_response_200_791", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L791"}, {"id": "api_admin_rating_comment_management", "label": "Rating & Comment Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L796"}, {"id": "api_admin_get_api_v1_admin_rates", "label": "GET `/api/v1/admin/rates`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L798"}, {"id": "api_admin_query_parameters_804", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L804"}, {"id": "api_admin_get_api_v1_admin_comments", "label": "GET `/api/v1/admin/comments`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L815"}, {"id": "api_admin_query_parameters_821", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L821"}, {"id": "api_admin_sms_management_admin", "label": "SMS Management (Admin)", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L833"}, {"id": "api_admin_get_api_v1_admin_sms_logs", "label": "GET `/api/v1/admin/sms/logs`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L835"}, {"id": "api_admin_query_parameters_841", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L841"}, {"id": "api_admin_response_200_848", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L848"}, {"id": "api_admin_get_api_v1_admin_sms_templates", "label": "GET `/api/v1/admin/sms/templates`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L873"}, {"id": "api_admin_response_200_879", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L879"}, {"id": "api_admin_clinic_invitation_management", "label": "Clinic Invitation Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L899"}, {"id": "api_admin_settings", "label": "Settings", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L913"}, {"id": "api_admin_get_api_v1_admin_settings", "label": "GET /api/v1/admin/settings", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L915"}, {"id": "api_admin_patch_api_v1_admin_settings", "label": "PATCH /api/v1/admin/settings", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L948"}, {"id": "api_admin_pre_registration_management", "label": "Pre-Registration Management", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L990"}, {"id": "api_admin_get_api_v1_admin_pre_registrations", "label": "GET `/api/v1/admin/pre-registrations`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L992"}, {"id": "api_admin_post_api_v1_admin_pre_registrations_uuid_approve", "label": "POST `/api/v1/admin/pre-registrations/{uuid}/approve`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1026"}, {"id": "api_admin_post_api_v1_admin_pre_registrations_uuid_reject", "label": "POST `/api/v1/admin/pre-registrations/{uuid}/reject`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1044"}, {"id": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "label": "\u0645\u0648\u062a\u0648\u0631 \u0645\u0627\u0644\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1060"}, {"id": "api_admin_get_api_v1_admin_financial_breakdowns", "label": "GET `/api/v1/admin/financial-breakdowns`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1081"}, {"id": "api_admin_get_api_v1_admin_financial_summary", "label": "GET `/api/v1/admin/financial-summary`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1115"}, {"id": "api_admin_get_api_v1_admin_settings_tax_history", "label": "GET `/api/v1/admin/settings/tax-history`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1133"}, {"id": "api_admin_get_api_v1_admin_settlement_uuid", "label": "GET `/api/v1/admin/settlement/{uuid}`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1147"}, {"id": "api_admin_application_logs", "label": "Application Logs", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1173"}, {"id": "api_admin_get_api_v1_admin_logs", "label": "GET `/api/v1/admin/logs`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1180"}, {"id": "api_admin_query_parameters_1186", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1186"}, {"id": "api_admin_response_200_1198", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1198"}, {"id": "api_admin_get_api_v1_admin_logs_export", "label": "GET `/api/v1/admin/logs/export`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1221"}, {"id": "api_admin_query_parameters_1227", "label": "Query Parameters", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1227"}, {"id": "api_admin_response_200_1235", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1235"}, {"id": "api_admin_delete_api_v1_admin_logs", "label": "DELETE `/api/v1/admin/logs`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1240"}, {"id": "api_admin_response_200_1246", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1246"}, {"id": "api_admin_log_retention", "label": "Log Retention", "file_type": "document", "source_file": "docs/api/admin.md", "source_location": "L1253"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_admin_md", "target": "api_admin_admin_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_dashboard", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L9", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_get_api_v1_admin_dashboard_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L11", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L17", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_get_api_v1_admin_dashboard_charts", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L41", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_response_200_47", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L47", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_get_api_v1_admin_dashboard_recent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L74", "weight": 1.0}, {"source": "api_admin_dashboard", "target": "api_admin_response_200_80", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L80", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_user_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L118", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_get_api_v1_admin_users", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L120", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_query_parameters", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L126", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_136", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L136", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_get_api_v1_admin_users_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L156", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_162", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L162", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L179", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_get_api_v1_admin_users_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L186", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_192", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L192", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_put_api_v1_admin_users_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L209", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_request_body_application_json", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L215", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_223", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L223", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_put_api_v1_admin_users_uuid_role", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L228", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_request_body_application_json_234", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L234", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_245", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L245", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_post_api_v1_admin_users_uuid_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L252", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_258", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L258", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_delete_api_v1_admin_users_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L265", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_response_200_271", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L271", "weight": 1.0}, {"source": "api_admin_user_management", "target": "api_admin_errors_276", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L276", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_doctor_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L283", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_post_api_v1_admin_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L287", "weight": 1.0}, {"source": "api_admin_post_api_v1_admin_doctors", "target": "api_admin_request_body_application_json_293", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L293", "weight": 1.0}, {"source": "api_admin_post_api_v1_admin_doctors", "target": "api_admin_errors_302", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L302", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_post_api_v1_admin_clinic", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L310", "weight": 1.0}, {"source": "api_admin_post_api_v1_admin_clinic", "target": "api_admin_request_body_application_json_316", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L316", "weight": 1.0}, {"source": "api_admin_post_api_v1_admin_clinic", "target": "api_admin_errors_322", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L322", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_get_api_v1_admin_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L331", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_query_parameters_337", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L337", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_response_200_349", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L349", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_get_api_v1_admin_doctors_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L369", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_response_200_375", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L375", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_post_api_v1_admin_doctors_uuid_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L392", "weight": 1.0}, {"source": "api_admin_doctor_management", "target": "api_admin_response_200_398", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L398", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_clinic_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L405", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_get_api_v1_admin_clinics", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L407", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_query_parameters_413", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L413", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_response_200_421", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L421", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_patch_api_v1_admin_clinic_uuid_status", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L441", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_response_200_447", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L447", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_errors_452", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L452", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_delete_api_v1_admin_clinic_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L459", "weight": 1.0}, {"source": "api_admin_clinic_management", "target": "api_admin_response_200_467", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L467", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_appointment_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L474", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_get_api_v1_admin_appointments_today_stats", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L476", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_query_parameters_482", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L482", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_response_200_487", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L487", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_get_api_v1_admin_appointments", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L502", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_query_parameters_508", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L508", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_response_200_518", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L518", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_post_api_v1_admin_appointment", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L547", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_request_body", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L553", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_response_201", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L567", "weight": 1.0}, {"source": "api_admin_appointment_management", "target": "api_admin_error_responses", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L580", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_payment_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L589", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_get_api_v1_admin_payments", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L591", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_query_parameters_597", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L597", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_query_parameters_\u062a\u06a9\u0645\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L604", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_response_200_609", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L609", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_get_api_v1_admin_payments_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L633", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_response_200_639", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L639", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_post_api_v1_admin_payments_uuid_refund", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L663", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_post_api_v1_admin_payments_uuid_reverse", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L681", "weight": 1.0}, {"source": "api_admin_payment_management", "target": "api_admin_errors_payment_refund_reverse_detail", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L687", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_settlement_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L695", "weight": 1.0}, {"source": "api_admin_settlement_management", "target": "api_admin_get_api_v1_admin_settlements", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L697", "weight": 1.0}, {"source": "api_admin_settlement_management", "target": "api_admin_query_parameters_703", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L703", "weight": 1.0}, {"source": "api_admin_settlement_management", "target": "api_admin_response_200_710", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L710", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_representation_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L732", "weight": 1.0}, {"source": "api_admin_representation_management", "target": "api_admin_get_api_v1_admin_representations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L734", "weight": 1.0}, {"source": "api_admin_representation_management", "target": "api_admin_query_parameters_740", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L740", "weight": 1.0}, {"source": "api_admin_representation_management", "target": "api_admin_response_200_748", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L748", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_secretary_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L776", "weight": 1.0}, {"source": "api_admin_secretary_management", "target": "api_admin_get_api_v1_admin_secretaries", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L778", "weight": 1.0}, {"source": "api_admin_secretary_management", "target": "api_admin_query_parameters_784", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L784", "weight": 1.0}, {"source": "api_admin_secretary_management", "target": "api_admin_response_200_791", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L791", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_rating_comment_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L796", "weight": 1.0}, {"source": "api_admin_rating_comment_management", "target": "api_admin_get_api_v1_admin_rates", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L798", "weight": 1.0}, {"source": "api_admin_rating_comment_management", "target": "api_admin_query_parameters_804", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L804", "weight": 1.0}, {"source": "api_admin_rating_comment_management", "target": "api_admin_get_api_v1_admin_comments", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L815", "weight": 1.0}, {"source": "api_admin_rating_comment_management", "target": "api_admin_query_parameters_821", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L821", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_sms_management_admin", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L833", "weight": 1.0}, {"source": "api_admin_sms_management_admin", "target": "api_admin_get_api_v1_admin_sms_logs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L835", "weight": 1.0}, {"source": "api_admin_sms_management_admin", "target": "api_admin_query_parameters_841", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L841", "weight": 1.0}, {"source": "api_admin_sms_management_admin", "target": "api_admin_response_200_848", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L848", "weight": 1.0}, {"source": "api_admin_sms_management_admin", "target": "api_admin_get_api_v1_admin_sms_templates", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L873", "weight": 1.0}, {"source": "api_admin_sms_management_admin", "target": "api_admin_response_200_879", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L879", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_admin_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_sms_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L895", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_clinic_invitation_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L899", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_admin_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_clinic_invitation_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L901", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L913", "weight": 1.0}, {"source": "api_admin_settings", "target": "api_admin_get_api_v1_admin_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L915", "weight": 1.0}, {"source": "api_admin_settings", "target": "api_admin_patch_api_v1_admin_settings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L948", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_pre_registration_management", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L990", "weight": 1.0}, {"source": "api_admin_pre_registration_management", "target": "api_admin_get_api_v1_admin_pre_registrations", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L992", "weight": 1.0}, {"source": "api_admin_pre_registration_management", "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_approve", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1026", "weight": 1.0}, {"source": "api_admin_pre_registration_management", "target": "api_admin_post_api_v1_admin_pre_registrations_uuid_reject", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1044", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1060", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_admin_md", "target": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_captcha_md", "relation": "references", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1075", "weight": 1.0}, {"source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "target": "api_admin_get_api_v1_admin_financial_breakdowns", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1081", "weight": 1.0}, {"source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "target": "api_admin_get_api_v1_admin_financial_summary", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1115", "weight": 1.0}, {"source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "target": "api_admin_get_api_v1_admin_settings_tax_history", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1133", "weight": 1.0}, {"source": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc", "target": "api_admin_get_api_v1_admin_settlement_uuid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1147", "weight": 1.0}, {"source": "api_admin_admin_api", "target": "api_admin_application_logs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1173", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_get_api_v1_admin_logs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1180", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_query_parameters_1186", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1186", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_response_200_1198", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1198", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_get_api_v1_admin_logs_export", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1221", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_query_parameters_1227", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1227", "weight": 1.0}, {"source": "api_admin_query_parameters_1227", "target": "api_admin_response_200_1235", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1235", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_delete_api_v1_admin_logs", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1240", "weight": 1.0}, {"source": "api_admin_delete_api_v1_admin_logs", "target": "api_admin_response_200_1246", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1246", "weight": 1.0}, {"source": "api_admin_application_logs", "target": "api_admin_log_retention", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/admin.md", "source_location": "L1253", "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/e130ca7216158c9d3e3630e48807d7b91af8e3c8c7f6c019a51abd6b88764ed7.json b/graphify-out/cache/ast/v0.8.44/e130ca7216158c9d3e3630e48807d7b91af8e3c8c7f6c019a51abd6b88764ed7.json
new file mode 100644
index 00000000..97b7d293
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/e130ca7216158c9d3e3630e48807d7b91af8e3c8c7f6c019a51abd6b88764ed7.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "label": "DoctorImportTest.php", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L1"}, {"id": "doctor_doctorimporttest_doctorimporttest", "label": "DoctorImportTest", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13"}, {"id": "apitestcase", "label": "ApiTestCase", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "doctor_doctorimporttest_doctorimporttest_importpayload", "label": ".importPayload()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15"}, {"id": "doctor_doctorimporttest_doctorimporttest_freshcode", "label": ".freshCode()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "label": ".testImportCreatesUnclaimedDoctorWithSurrogateUser()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33"}, {"id": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "label": ".testReimportUpdatesInsteadOfDuplicating()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L56"}, {"id": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "label": ".testClaimedDoctorIsNeverOverwritten()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L80"}, {"id": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "label": ".testValidationErrors()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L107"}, {"id": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "label": ".testNonAdminIsRejected()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L118"}, {"id": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "label": ".testImporterRoleCanImportButNothingElse()", "file_type": "code", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L125"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "apitestcase", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_tests_doctor_doctorimporttest_php", "target": "doctor_doctorimporttest_doctorimporttest", "relation": "contains", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "apitestcase", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L13", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L15", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L28", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L33", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L56", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L80", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L107", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L118", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest", "target": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "relation": "method", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L125", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L36", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L38", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L59", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L61", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L83", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L85", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L111", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L121", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_importpayload", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L129", "weight": 1.0}, {"source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "target": "doctor_doctorimporttest_doctorimporttest_freshcode", "relation": "calls", "context": "call", "confidence": "EXTRACTED", "source_file": "tests/Doctor/DoctorImportTest.php", "source_location": "L129", "weight": 1.0}], "raw_calls": [{"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_freshcode", "callee": "random_int", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L30", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L35", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L38", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L40", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L41", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L42", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertNotEmpty", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L43", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L45", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L46", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getSource", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L47", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L48", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L50", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertStringStartsWith", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L51", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L51", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L52", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L52", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "assertTrue", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser", "callee": "hasRole", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L53", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L58", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L61", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L62", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L62", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L66", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L68", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L68", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertFalse", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L69", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L70", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "count", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L72", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L73", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L75", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L76", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L77", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L82", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L85", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L88", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L88", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L89", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "transferOwnershipTo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L90", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L91", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L92", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L96", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L98", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L99", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "clear", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L101", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L102", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L103", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L103", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L104", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten", "callee": "getOwnerStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L104", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L109", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L111", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L112", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L112", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L114", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L115", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L120", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L121", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L122", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L122", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "createUser", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L127", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L129", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L130", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L130", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L132", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L133", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "authJson", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L135", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "assertSame", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}, {"caller_nid": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse", "callee": "responseCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php", "source_location": "L136", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/e1db933b14ab404edb5b5862a4301869c091b70f4f50e38af29d55d1956ddad1.json b/graphify-out/cache/ast/v0.8.44/e1db933b14ab404edb5b5862a4301869c091b70f4f50e38af29d55d1956ddad1.json
new file mode 100644
index 00000000..9583064a
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/e1db933b14ab404edb5b5862a4301869c091b70f4f50e38af29d55d1956ddad1.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "label": "DoctorImportController.php", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L1"}, {"id": "controller_doctorimportcontroller_doctorimportcontroller", "label": "DoctorImportController", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L22"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_doctorimportcontroller_doctorimportcontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L26"}, {"id": "controller_doctorimportcontroller_doctorimportcontroller_import", "label": ".import()", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30"}, {"id": "user", "label": "User", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "doctorimportservice", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_doctor_controller_doctorimportcontroller_php", "target": "controller_doctorimportcontroller_doctorimportcontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L22", "weight": 1.0}, {"source": "controller_doctorimportcontroller_doctorimportcontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L24", "weight": 1.0}, {"source": "controller_doctorimportcontroller_doctorimportcontroller", "target": "controller_doctorimportcontroller_doctorimportcontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L26", "weight": 1.0}, {"source": "controller_doctorimportcontroller_doctorimportcontroller", "target": "controller_doctorimportcontroller_doctorimportcontroller_import", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30", "weight": 1.0}, {"source": "controller_doctorimportcontroller_doctorimportcontroller_import", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorimportcontroller_doctorimportcontroller_import", "target": "user", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_doctorimportcontroller_doctorimportcontroller_import", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Doctor/Controller/DoctorImportController.php", "source_location": "L30", "weight": 1.0, "context": "return_type"}], "raw_calls": [{"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "isGranted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "isGranted", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L62", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L63", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L66", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L67", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L68", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L71", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L74", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L79", "receiver": null}, {"caller_nid": "controller_doctorimportcontroller_doctorimportcontroller_import", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php", "source_location": "L84", "receiver": null}]}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/e88a7ec706503b8f257f64700b683ff3c3179db707cad053c6d111c9f41867b1.json b/graphify-out/cache/ast/v0.8.44/e88a7ec706503b8f257f64700b683ff3c3179db707cad053c6d111c9f41867b1.json
new file mode 100644
index 00000000..047b1596
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/e88a7ec706503b8f257f64700b683ff3c3179db707cad053c6d111c9f41867b1.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_claim_md", "label": "doctor-claim.md", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L1"}, {"id": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "label": "Doctor Profile Claim API (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u200c\u0634\u062f\u0647)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L1"}, {"id": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a", "label": "\u0686\u0631\u062e\u0647\u0654 \u0648\u0636\u0639\u06cc\u062a", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L12"}, {"id": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "label": "GET `/api/v1/doctor/{uuid}/claim-info`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L25"}, {"id": "api_doctor_claim_response_200", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L29"}, {"id": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "label": "POST `/api/v1/doctor/{uuid}/claim`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L40"}, {"id": "api_doctor_claim_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L45"}, {"id": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race", "label": "\u0645\u0631\u0627\u062d\u0644 \u0633\u0631\u0648\u0631 (\u0627\u062a\u0645\u06cc\u06a9/\u0636\u062f race)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L61"}, {"id": "api_doctor_claim_response_200_73", "label": "Response `200`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L73"}, {"id": "api_doctor_claim_errors", "label": "Errors", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L85"}, {"id": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer", "label": "POST `/api/v1/admin/doctors/{uuid}/transfer`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L100"}, {"id": "api_doctor_claim_get_api_v1_admin_doctor_claims", "label": "GET `/api/v1/admin/doctor-claims`", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L108"}, {"id": "api_doctor_claim_response_200_paginated", "label": "Response `200` (paginated)", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L117"}, {"id": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "label": "env \u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L141"}, {"id": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627", "label": "\u062a\u0633\u062a\u200c\u0647\u0627", "file_type": "document", "source_file": "docs/api/doctor-claim.md", "source_location": "L148"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_claim_md", "target": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L12", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L25", "weight": 1.0}, {"source": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info", "target": "api_doctor_claim_response_200", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L29", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L40", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L45", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L61", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_response_200_73", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L73", "weight": 1.0}, {"source": "api_doctor_claim_post_api_v1_doctor_uuid_claim", "target": "api_doctor_claim_errors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L85", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L100", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_get_api_v1_admin_doctor_claims", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L108", "weight": 1.0}, {"source": "api_doctor_claim_get_api_v1_admin_doctor_claims", "target": "api_doctor_claim_response_200_paginated", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L117", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L141", "weight": 1.0}, {"source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647", "target": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-claim.md", "source_location": "L148", "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/e9540e69db206fbe3b66cc3eb8b3ee115dbc36e2e0c1851b7d84efd404a4463c.json b/graphify-out/cache/ast/v0.8.44/e9540e69db206fbe3b66cc3eb8b3ee115dbc36e2e0c1851b7d84efd404a4463c.json
new file mode 100644
index 00000000..e39c61c8
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/e9540e69db206fbe3b66cc3eb8b3ee115dbc36e2e0c1851b7d84efd404a4463c.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_import_md", "label": "doctor-import.md", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L1"}, {"id": "api_doctor_import_doctor_import_irimc_api", "label": "Doctor Import (IRIMC) API", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L1"}, {"id": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors", "label": "\u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a (\u0633\u062a\u0648\u0646\u200c\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f `doctors`)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L18"}, {"id": "api_doctor_import_idempotency", "label": "idempotency", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L32"}, {"id": "api_doctor_import_request", "label": "Request", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L45"}, {"id": "api_doctor_import_response", "label": "Response", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L78"}, {"id": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f", "label": "`201 Created` (\u0633\u0627\u062e\u062a\u0647 \u0634\u062f)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L80"}, {"id": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f", "label": "`200 OK` (\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L85"}, {"id": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647", "label": "`200 OK` (\u0631\u062f \u0628\u0647\u200c\u062f\u0644\u06cc\u0644 \u062a\u0635\u0627\u062d\u0628\u200c\u0634\u062f\u0647)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L90"}, {"id": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "label": "`422` (\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L95"}, {"id": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "label": "\u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L102"}, {"id": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc", "label": "\u0627\u0646\u062a\u0642\u0627\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u0628\u0647 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L113"}, {"id": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "label": "\u06a9\u0627\u0631\u0628\u0631 \u0633\u06cc\u0633\u062a\u0645\u06cc \u0648 \u0686\u0631\u062e\u0647\u0654 \u0639\u0645\u0631", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L155"}, {"id": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha", "label": "\u0644\u0627\u06af\u06cc\u0646 \u0633\u0631\u0648\u06cc\u0633\u06cc (captcha)", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L169"}, {"id": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc", "label": "backfill \u0646\u0642\u0634 \u062c\u0627\u0646\u0634\u06cc\u0646\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc", "file_type": "document", "source_file": "docs/api/doctor-import.md", "source_location": "L183"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_api_doctor_import_md", "target": "api_doctor_import_doctor_import_irimc_api", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L1", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L18", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_idempotency", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L32", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_request", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L45", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_response", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L78", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L80", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L85", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L90", "weight": 1.0}, {"source": "api_doctor_import_response", "target": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L95", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L102", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L113", "weight": 1.0}, {"source": "api_doctor_import_doctor_import_irimc_api", "target": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L155", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L169", "weight": 1.0}, {"source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631", "target": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc", "relation": "contains", "confidence": "EXTRACTED", "source_file": "docs/api/doctor-import.md", "source_location": "L183", "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/f465cea10ffa3b87699a78ddbb172e9b305ef3af5ddd1161c12503502f2b3ea4.json b/graphify-out/cache/ast/v0.8.44/f465cea10ffa3b87699a78ddbb172e9b305ef3af5ddd1161c12503502f2b3ea4.json
new file mode 100644
index 00000000..fa315e02
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/f465cea10ffa3b87699a78ddbb172e9b305ef3af5ddd1161c12503502f2b3ea4.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_docs_scenarios_climed_md", "label": "climed.md", "file_type": "document", "source_file": "docs/scenarios/climed.md", "source_location": "L1"}], "edges": [], "input_tokens": 0, "output_tokens": 0}
\ No newline at end of file
diff --git a/graphify-out/cache/ast/v0.8.44/feddae9e3310c6852cd14967fd8f527e161d69d67ff377a4a2183efc800ce1ea.json b/graphify-out/cache/ast/v0.8.44/feddae9e3310c6852cd14967fd8f527e161d69d67ff377a4a2183efc800ce1ea.json
new file mode 100644
index 00000000..083ab29e
--- /dev/null
+++ b/graphify-out/cache/ast/v0.8.44/feddae9e3310c6852cd14967fd8f527e161d69d67ff377a4a2183efc800ce1ea.json
@@ -0,0 +1 @@
+{"nodes": [{"id": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "label": "AdminApiController.php", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1"}, {"id": "controller_adminapicontroller_adminapicontroller", "label": "AdminApiController", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L33"}, {"id": "basecontroller", "label": "BaseController", "file_type": "code", "source_file": "", "source_location": ""}, {"id": "controller_adminapicontroller_adminapicontroller_construct", "label": ".__construct()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L37"}, {"id": "controller_adminapicontroller_adminapicontroller_userstats", "label": ".userStats()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L47"}, {"id": "jsonresponse", "label": "JsonResponse", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L47"}, {"id": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "label": ".toggleUserStatus()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L107"}, {"id": "controller_adminapicontroller_adminapicontroller_updateuserrole", "label": ".updateUserRole()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L119"}, {"id": "request", "label": "Request", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L119"}, {"id": "controller_adminapicontroller_adminapicontroller_userdetail", "label": ".userDetail()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L146"}, {"id": "controller_adminapicontroller_adminapicontroller_updateuser", "label": ".updateUser()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L166"}, {"id": "controller_adminapicontroller_adminapicontroller_deleteuser", "label": ".deleteUser()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L194"}, {"id": "controller_adminapicontroller_adminapicontroller_users", "label": ".users()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L206"}, {"id": "controller_adminapicontroller_adminapicontroller_doctorstats", "label": ".doctorStats()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L263"}, {"id": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "label": ".toggleDoctorStatus()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L288"}, {"id": "controller_adminapicontroller_adminapicontroller_doctorslist", "label": ".doctorsList()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L300"}, {"id": "controller_adminapicontroller_adminapicontroller_createdoctor", "label": ".createDoctor()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L398"}, {"id": "controller_adminapicontroller_adminapicontroller_clinicslist", "label": ".clinicsList()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L455"}, {"id": "controller_adminapicontroller_adminapicontroller_createclinic", "label": ".createClinic()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L512"}, {"id": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "label": ".toggleClinicStatus()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L553"}, {"id": "controller_adminapicontroller_adminapicontroller_deleteclinic", "label": ".deleteClinic()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L565"}, {"id": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "label": ".appointmentsTodayStats()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L580"}, {"id": "controller_adminapicontroller_adminapicontroller_appointments", "label": ".appointments()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L647"}, {"id": "controller_adminapicontroller_adminapicontroller_createappointment", "label": ".createAppointment()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L760"}, {"id": "controller_adminapicontroller_adminapicontroller_payments", "label": ".payments()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L844"}, {"id": "controller_adminapicontroller_adminapicontroller_paymentdetail", "label": ".paymentDetail()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L888"}, {"id": "controller_adminapicontroller_adminapicontroller_refundpayment", "label": ".refundPayment()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L938"}, {"id": "controller_adminapicontroller_adminapicontroller_reversepayment", "label": ".reversePayment()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L957"}, {"id": "controller_adminapicontroller_adminapicontroller_representations", "label": ".representations()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L973"}, {"id": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "label": ".financialBreakdowns()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1086"}, {"id": "controller_adminapicontroller_adminapicontroller_financialsummary", "label": ".financialSummary()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1162"}, {"id": "controller_adminapicontroller_adminapicontroller_secretaries", "label": ".secretaries()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1193"}, {"id": "controller_adminapicontroller_adminapicontroller_rates", "label": ".rates()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1277"}, {"id": "controller_adminapicontroller_adminapicontroller_comments", "label": ".comments()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1364"}, {"id": "controller_adminapicontroller_adminapicontroller_smslogs", "label": ".smsLogs()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1453"}, {"id": "controller_adminapicontroller_adminapicontroller_settlements", "label": ".settlements()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1529"}, {"id": "controller_adminapicontroller_adminapicontroller_settlementdetail", "label": ".settlementDetail()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1612"}, {"id": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "label": ".smsSampleTemplates()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1660"}, {"id": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "label": ".dashboardRecent()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1735"}, {"id": "controller_adminapicontroller_adminapicontroller_dashboardstats", "label": ".dashboardStats()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1853"}, {"id": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "label": ".dashboardCharts()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1981"}, {"id": "controller_adminapicontroller_adminapicontroller_logs", "label": ".logs()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2053"}, {"id": "controller_adminapicontroller_adminapicontroller_exportlogs", "label": ".exportLogs()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2110"}, {"id": "streamedresponse", "label": "StreamedResponse", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2110"}, {"id": "controller_adminapicontroller_adminapicontroller_clearlogs", "label": ".clearLogs()", "file_type": "code", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2176"}], "edges": [{"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "appointment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L5", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "errorcodes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L6", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "slottakenexception", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L7", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "user", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L8", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "inputvalidator", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L9", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "clinic", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L10", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "doctor", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L11", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "specialty", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L12", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "payment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L13", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "comment", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L14", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "rate", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L15", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "representation", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L16", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "doctorsecretary", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L17", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "financialbreakdown", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L18", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "settlement", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L19", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "applog", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L20", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "smslog", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L21", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "smstemplate", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L22", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "basecontroller", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L23", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "entitymanagerinterface", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L24", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "attributes", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L25", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "jsonresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L26", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "request", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L27", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "streamedresponse", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L28", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "route", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L29", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "currentuser", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L30", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "isgranted", "relation": "imports", "context": "import", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L31", "weight": 1.0}, {"source": "users_hamed_pj_my_pj_clinic_pro_clinicpro_src_admin_controller_adminapicontroller_php", "target": "controller_adminapicontroller_adminapicontroller", "relation": "contains", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L33", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "basecontroller", "relation": "inherits", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L35", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_construct", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L37", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_userstats", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L47", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_userstats", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L47", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L107", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L107", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_updateuserrole", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L119", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_updateuserrole", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L119", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_updateuserrole", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L119", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_userdetail", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L146", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_userdetail", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L146", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_updateuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L166", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_updateuser", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L166", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_updateuser", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L166", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_deleteuser", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L194", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_deleteuser", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L194", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_users", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L206", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_users", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L206", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_users", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L206", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_doctorstats", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L263", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_doctorstats", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L263", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L288", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L288", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_doctorslist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L300", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_doctorslist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L300", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_doctorslist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L300", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_createdoctor", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L398", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_createdoctor", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L398", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_createdoctor", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L398", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_clinicslist", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L455", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_clinicslist", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L455", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_clinicslist", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L455", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_createclinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L512", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_createclinic", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L512", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_createclinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L512", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L553", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L553", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_deleteclinic", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L565", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_deleteclinic", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L565", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L580", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L580", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L580", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_appointments", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L647", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_appointments", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L647", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_appointments", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L647", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_createappointment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L760", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_createappointment", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L760", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_createappointment", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L760", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_payments", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L844", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_payments", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L844", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_payments", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L844", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_paymentdetail", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L888", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_paymentdetail", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L888", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_refundpayment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L938", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_refundpayment", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L938", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_refundpayment", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L938", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_reversepayment", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L957", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_reversepayment", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L957", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_reversepayment", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L957", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_representations", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L973", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_representations", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L973", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_representations", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L973", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1086", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1086", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1086", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_financialsummary", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1162", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_financialsummary", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1162", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_secretaries", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1193", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_secretaries", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1193", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_secretaries", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1193", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_rates", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1277", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_rates", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1277", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_rates", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1277", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_comments", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1364", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_comments", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1364", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_comments", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1364", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_smslogs", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1453", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_smslogs", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1453", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_smslogs", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1453", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_settlements", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1529", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_settlements", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1529", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_settlements", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1529", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_settlementdetail", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1612", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_settlementdetail", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1612", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1660", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1660", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1660", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1735", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1735", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_dashboardstats", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1853", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_dashboardstats", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1853", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1981", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1981", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L1981", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_logs", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2053", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_logs", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2053", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_logs", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2053", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_exportlogs", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2110", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_exportlogs", "target": "request", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2110", "weight": 1.0, "context": "parameter_type"}, {"source": "controller_adminapicontroller_adminapicontroller_exportlogs", "target": "streamedresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2110", "weight": 1.0, "context": "return_type"}, {"source": "controller_adminapicontroller_adminapicontroller", "target": "controller_adminapicontroller_adminapicontroller_clearlogs", "relation": "method", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2176", "weight": 1.0}, {"source": "controller_adminapicontroller_adminapicontroller_clearlogs", "target": "jsonresponse", "relation": "references", "confidence": "EXTRACTED", "source_file": "src/Admin/Controller/AdminApiController.php", "source_location": "L2176", "weight": 1.0, "context": "return_type"}], "raw_calls": [{"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L90", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L92", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L93", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L94", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L95", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userstats", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L97", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L111", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "setStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L113", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L114", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleuserstatus", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L116", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L122", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L123", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L125", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "isset", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L136", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L137", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L140", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L141", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuserrole", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L143", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L149", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L150", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L152", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L153", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L154", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L155", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L156", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getEmail", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L157", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L158", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L159", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L160", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getCreatedAt", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L161", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_userdetail", "callee": "getCreatedAt", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L162", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L169", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L170", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L172", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L174", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L175", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "array_key_exists", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L177", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "setEmail", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L178", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L180", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "setPasswordHash", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "password_hash", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L181", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L184", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L186", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L187", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L188", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getEmail", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L189", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_updateuser", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L190", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L197", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L197", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L198", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L200", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L201", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteuser", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L203", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L209", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L210", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L211", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L212", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L213", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L214", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L216", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L216", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L216", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L221", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L227", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L228", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L230", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L231", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L233", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L243", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L245", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L246", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L248", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L248", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_users", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L257", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L266", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L267", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L268", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L269", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L270", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L272", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorstats", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L278", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L291", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L291", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L292", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "setActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L294", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L294", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L295", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L297", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus", "callee": "isActiveDoctorAppointment", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L297", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L303", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L304", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L305", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L305", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L306", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L307", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L307", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L308", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L309", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L311", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L327", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L327", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L328", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L337", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L344", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L350", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "array_column", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L361", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L363", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L364", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L367", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L374", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L375", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L390", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L391", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_doctorslist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L395", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L401", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L401", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L402", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L402", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L403", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L406", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L408", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L409", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L412", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L412", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L415", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setPasswordHash", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "password_hash", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "bin2hex", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "random_bytes", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L416", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L417", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L420", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L420", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L422", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L427", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setGender", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L427", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L428", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setDegree", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L428", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L429", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setMedicalSystemCode", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L429", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L430", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L430", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L431", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setMobileNumber", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L431", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L432", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setActivityTime", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L432", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "is_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "find", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L436", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L436", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "add", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L437", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getSpecialties", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L437", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L441", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L442", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L444", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L444", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L444", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L447", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L448", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L450", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createdoctor", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L450", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L458", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L459", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L460", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L460", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L461", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L463", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L476", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "fetchOne", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L478", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L484", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L498", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clinicslist", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L509", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L515", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L515", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L516", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L516", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L517", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L520", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "InputValidator", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L522", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L523", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L526", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L529", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L529", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L532", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "getRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L535", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "in_array", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L536", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "array_values", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "array_unique", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L538", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "setName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L542", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L543", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "setTelephone", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L543", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L544", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "setAddress", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L544", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L545", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "setInfo", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L545", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L547", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L548", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "getName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createclinic", "callee": "isActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L550", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L556", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L556", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L557", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "setIsActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L559", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "isActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L559", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L560", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L562", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus", "callee": "isActive", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L562", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L568", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L568", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L569", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "purgeForEntity", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L571", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "getId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L571", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "remove", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L572", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "flush", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L573", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_deleteclinic", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L575", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L608", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L608", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L608", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L609", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L610", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L612", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L613", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "groupBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L615", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "array_sum", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L630", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L639", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L698", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L699", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L700", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L700", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L701", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L701", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L702", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L702", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L703", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L703", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L705", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L721", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L721", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "preg_match", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L723", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L724", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "strtotime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L725", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L726", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L726", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L726", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L731", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L734", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L734", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L734", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L736", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L739", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L747", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L748", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L749", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L752", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_appointments", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L755", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "json_decode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L803", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getContent", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L803", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L807", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L808", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L810", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L810", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L810", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L811", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L814", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L814", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L817", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "setRealName", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L820", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "setRoles", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L821", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "persist", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L822", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L826", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "setNote", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L826", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "resolveSlotLocationId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L827", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "setAddressId", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L828", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "bookAtomically", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L831", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L831", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L833", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L836", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getUuid", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L837", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_createappointment", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L840", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L847", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L848", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L849", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L849", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L850", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L850", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L852", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L852", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L852", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L852", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L852", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L862", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L862", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L866", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L866", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L869", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L869", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L869", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L871", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L871", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L871", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L871", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L874", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L881", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L882", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_payments", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L885", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L903", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L916", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L920", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L933", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_paymentdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L941", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L943", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "toArray", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L945", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L949", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L953", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L953", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_refundpayment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L954", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "findOneBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L960", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L962", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "getClientIp", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L964", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L967", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "getStatus", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L967", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_reversepayment", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L968", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1019", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1020", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1021", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1021", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1022", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1024", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1024", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1024", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1024", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1024", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1031", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1031", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1036", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1036", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1040", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1040", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1040", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1042", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1042", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1042", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1042", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1046", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1049", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1049", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1061", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "array_column", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1071", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "implode", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1073", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "array_column", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1073", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1077", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_representations", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1081", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1103", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1104", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1105", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1106", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1106", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1107", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1108", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "leftJoin", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1110", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1123", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1123", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1126", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1126", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1129", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1129", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1132", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1132", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1135", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1135", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1135", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1137", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1137", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1137", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1137", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1140", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1156", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialbreakdowns", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1159", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "getSingleResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1171", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1171", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1171", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1171", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1171", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_financialsummary", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1182", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1236", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1237", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1238", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1238", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1240", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1252", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1252", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1256", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1256", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1256", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1258", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1258", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1258", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1258", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1261", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1269", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_secretaries", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1272", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1318", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1319", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1320", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1320", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1322", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1335", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1335", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1339", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1339", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1339", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1341", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1341", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1341", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1341", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1344", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1355", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_rates", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1359", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1408", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1409", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1410", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1410", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1411", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1411", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1413", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1425", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1425", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1429", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1429", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1432", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1432", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1432", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1434", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1437", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "mb_substr", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1441", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1445", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_comments", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1448", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1494", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1495", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1496", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1496", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1498", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1498", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1498", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1498", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1504", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1504", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1507", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1507", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1507", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1509", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1509", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1509", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1509", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1512", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1520", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1521", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smslogs", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1524", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1573", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1574", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1575", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1575", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1577", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1577", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1577", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1577", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1577", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1587", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1587", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1590", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1590", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1590", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1592", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1592", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1592", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1592", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1595", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1605", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1606", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlements", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1609", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1625", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "empty", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1636", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "error", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1637", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1641", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1653", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_settlementdetail", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1654", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1702", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1703", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1704", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1704", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1706", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1706", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1706", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1706", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1712", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1712", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1715", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1715", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1715", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1717", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1720", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1727", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_smssampletemplates", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1730", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1791", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "join", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1804", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1815", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1822", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1823", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1825", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1830", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1832", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1839", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1841", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardrecent", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1846", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "mktime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1889", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "mktime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1890", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1892", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1892", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1892", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1892", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1892", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1896", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1901", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1901", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1901", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1901", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1901", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1905", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1905", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1905", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1905", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1905", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1909", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1915", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1919", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1927", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1934", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1939", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "mktime", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1944", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1944", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1945", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1947", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "where", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1955", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardstats", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1962", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "getConnection", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1984", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "time", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1985", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1987", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1987", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1988", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1988", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1990", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "array_column", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1995", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L1997", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "array_column", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2002", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "ceil", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2004", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2009", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2010", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2015", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2019", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "fetchAllAssociative", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2027", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2037", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2040", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2041", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_dashboardcharts", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2042", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2070", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2071", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2072", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2072", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2073", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2073", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2074", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2074", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2075", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2075", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2077", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2077", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2077", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2082", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2082", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2085", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2085", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2088", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2088", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2091", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2091", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2094", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "getSingleScalarResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2096", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2096", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2096", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "getArrayResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2097", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2097", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setMaxResults", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2097", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "setFirstResult", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2097", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "paginated", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2099", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_logs", "callee": "array_map", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2099", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2125", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2125", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2126", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2126", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2127", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2127", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "trim", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2128", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "get", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2128", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "from", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2130", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "select", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2130", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "createQueryBuilder", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2130", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2135", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2135", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2138", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2138", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2141", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2141", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "setParameter", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2144", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "andWhere", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2144", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "orderBy", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2147", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "fopen", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2150", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "fwrite", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2152", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "fputcsv", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2153", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "toIterable", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2155", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "getQuery", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2155", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "fputcsv", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2156", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2163", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "fclose", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2166", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_exportlogs", "callee": "date", "is_member_call": false, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2169", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clearlogs", "callee": "deleteAll", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2179", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clearlogs", "callee": "getRepository", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2179", "receiver": null}, {"caller_nid": "controller_adminapicontroller_adminapicontroller_clearlogs", "callee": "success", "is_member_call": true, "source_file": "/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Admin/Controller/AdminApiController.php", "source_location": "L2181", "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 d278bfdf..f7d3e83b 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":3144,"mtime_ns":1783666096953896975,"hash":"0f897db099d2ec763d97567742429eb682a7b6f955187cd2382b2df8957bd09a"},"/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":2380,"mtime_ns":1783666097006385238,"hash":"c2185822b43db5ca6a54b83767776d61b6602130d3d66920219a7ee30faeeeaf"},"/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":1783067213231257247,"hash":"ffb0ad60c98078073b6590566e106ce7f1e2d0a830fe67fed83566e3a9614728"},"/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":116007,"mtime_ns":1783747617369992789,"hash":"bc7f6f48e0ea96dadd33ef9dc1b9dcc1233532d1bf17642ff06f77893b3ea42f"},"/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":24353,"mtime_ns":1783569345778808353,"hash":"416d314362c1793e98f5009fed41ee441fb4bf5d01de9b11018bd2fdbf407ea2"},"/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":10213,"mtime_ns":1783059631681371250,"hash":"71772f7b52621ca23f103b0badf87b12d25c430546a5adf6782758c47fc5d0b2"},"/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":36527,"mtime_ns":1783666097009341482,"hash":"1e979b2ea4c50ef051443cc5bd9f5351ac5cc9d8934c67c0c0319e3b36fc3d8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7242,"mtime_ns":1783237168983222014,"hash":"e87024acef4e93a1bddbdd8545b41f9130635d605b1a327ab4ac11661585b71e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7923,"mtime_ns":1783666097012409392,"hash":"51e53996bd81dece6745b657f1728dd6e02e1dcafe6171f84761e9624dcd0f60"},"/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":4454,"mtime_ns":1783668692438184401,"hash":"881c7b0774d7a8311ee38b6b9efd2c00d50ab3758b83acb226217638710104ad"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3747,"mtime_ns":1783236682997204096,"hash":"ac8f9cfa6d67decc1ff89d2ed61e9eb2ad2034214c015aa072acbbb66be05e97"},"/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":34503,"mtime_ns":1783569345779344103,"hash":"94dc860f300f6e0acf241b7c064dac0153a7746dc1c47ecc814b0d98f9748641"},"/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":4814,"mtime_ns":1783569345779687854,"hash":"dd99a5ee7f77a83f02171272634c9232a425204b86c18b13e6748549882fb1f7"},"/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":5432,"mtime_ns":1783748111777541475,"hash":"d7e3a199244ab8d4259e6fd0124f6b5ef16d6f594ce3e5d46a0a2c4cb8093cfd"},"/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":4232,"mtime_ns":1783748222119807877,"hash":"fbf4386c52cb60e185f2fd9fd9314f686b2bf89312677c104302148133556424"},"/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":3919,"mtime_ns":1783670899286432658,"hash":"abfb7e174b8d2d916580c0cda8c87eaab76ca76d20f014cfc54a0d133c64c866"},"/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":2334,"mtime_ns":1782929759660596058,"hash":"5ea072c77a0f25c8ccdd23616656fce0b88b93408c6cd461d98e9b18a6fa85b2"},"/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":38938,"mtime_ns":1783747336632812805,"hash":"67587a54dd8fe22ce6e3f32e7f0d43637b5033a2baae0a27e147a1f4159912a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":19522,"mtime_ns":1783747550813481497,"hash":"5ab10409c49cb4cf0986803e07c598de0591bed66bf0a7cb033066998281fd13"},"/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":8292,"mtime_ns":1783569345780537104,"hash":"91ff9fe1543497259c0bf018b7fd0ba5d7d82aa5f96bdb8fc46948fe79473b4b"},"/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":10774,"mtime_ns":1783499628812467561,"hash":"9cf15db59545af81148153a4d9c816748ba267bbbb58f9bec2e00d1853c15e8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":6500,"mtime_ns":1783499619365257750,"hash":"f128c29e22de67f0aad93bbee2a111d976f71344f5a3e55614b477bc86d3192b"},"/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":1312,"mtime_ns":1783569345780697355,"hash":"bfe69ca9f9bd18eaf159f24e63ee4e6fb88ab3d86dea725e9a7c27cba0f6d6d8"},"/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":31102,"mtime_ns":1783059694944318453,"hash":"06f9abb6001a7bf771e905db060daf3e5b6e80f67b4e2521ec377a8a59ca8be2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5779,"mtime_ns":1782995955189532682,"hash":"f26e537b012e10faaac23f291ccc341345bb2512c3c4496c4bffea3308086eba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":18056,"mtime_ns":1783747255645554752,"hash":"49fbd65792c12c2b7f97b6dc2f15ac4884fd508d0cb943787e74ba909c9d3def"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1863,"mtime_ns":1783010796437333621,"hash":"67b67fd5299c1e912359d94dce4c88d5742e2ee324d699fd12333e1a225bcf7e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":948,"mtime_ns":1783010796437841370,"hash":"fb3512aff2ebfdbe34c6d5eab4e67dfd5c90fa6dbbf0cec8bd23eac0c2e51734"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":663,"mtime_ns":1782981352831261065,"hash":"e474570a753b56888f8fa5458cf7eeafcf7e4ff390429a5f6612bada28f9b401"},"/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":4481,"mtime_ns":1783010796438445827,"hash":"46964086d05dde76b1c0e3bc7f3dae8eab8aa1ac6d9ae609abfb3396eae5aa6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3863,"mtime_ns":1782993112274771320,"hash":"f8e7f5bb986225beb28c2d175a78cb1c2dafdc8b99a60779bc1e04834ad1dff0"},"/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":1783666764412828074,"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":41262,"mtime_ns":1783236899056081118,"hash":"73475defd275c9aa8be88f4111486749fce766f658313b0d6fd2a98f7996ee24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":25500,"mtime_ns":1783569345781024938,"hash":"196a7389d6828be84bf9cef772cb40a5240e452e10cf28f161bd84e51d2e8cc8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":8158,"mtime_ns":1783569345781218772,"hash":"33f57eb6ea216ea8173d4459cc6df3a2378487bfb7c681b3025c2606bee54ff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":2152,"mtime_ns":1783571718895425847,"hash":"a0c1810c03b7a780ba1b14a631b11e0081767fc3e017e57d4b34b62274340b0e"},"/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":1037,"mtime_ns":1782929801207590724,"hash":"e1ed1b5ef5b6100bcb8a1e0d3e361ce40a2721501cdb5f14aa6fba8739654eee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":10960,"mtime_ns":1783237220892646662,"hash":"21ce325a02909122b15186e4aaf8609886b5e1401d30e4684efade11540c1321"},"/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":5754,"mtime_ns":1783569345781547980,"hash":"2a99307286612b41130a3002490343c9dfde0b0c18906b58f1a6e9e86a1edc14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9863,"mtime_ns":1783747388311953088,"hash":"d65b77e0134024f2a1d3222d6bc9837f71572f7177692a28fcd1d7bbdd4239bd"},"/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":594,"mtime_ns":1783669189781435180,"hash":"5ffa2cd3fcf314ecaae34fa9f8dd7a2db4a3dfe7b8d5250f16eb0a7f2eb6e652"},"/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":6528,"mtime_ns":1783747430565936030,"hash":"1bf9e2fdbbdeb39ef79ec789eef2feed93ab43b4d38d6fb654f99f51ca8f6956"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":2575,"mtime_ns":1783010796440870365,"hash":"7562c1a0460eb6831ccd6e2ff396ed01256672933fc480a9454dfd202efd0d55"},"/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":1917,"mtime_ns":1783237401025294121,"hash":"04f1982a5c4317dd15ee55dfcbc7c0182f86fbce90766e5a3366fe4f19378c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21883,"mtime_ns":1783422449654674455,"hash":"b15e9b15dedddb501f30a18e46b3c7052cdf5778006913d86f34279e6159ab21"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4630,"mtime_ns":1783237134183460253,"hash":"2869945324e63ed664748e1770ce7065d91428cbd313843814ac4256cd8b2fe8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11400,"mtime_ns":1782998941568914993,"hash":"af47e04758a2a47c3122a567c79aaf3a2638c5c09e2d21308a91b966b1cfe8aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":3702,"mtime_ns":1783455929824117615,"hash":"937dcaa8618c78e6ac393fe1f6ef06bfa398cc5c392fb469be504d05bd8384ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":7545,"mtime_ns":1783239399682426157,"hash":"40fcf700f49544484e460b779e7cd1105a0aac40cf36a805aa69f61f0223d12f"},"/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":4634,"mtime_ns":1783491549884796725,"hash":"05cafa28a8b14f38d40e13f7139dcac2c2b3a4f87fbf07199bdad5dfd0805733"},"/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":4396,"mtime_ns":1783455940747216997,"hash":"22349e84d7bcc71d5c70a286e38f703b30448a5caa66ba9714b8bb805a37f0a3"},"/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":11864,"mtime_ns":1783235518955936576,"hash":"34f7415b9246e4c6bc25a43e9138ca0ac585d5cc664c0b78fe351c6239937a96"},"/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":3881,"mtime_ns":1783233488170274281,"hash":"707633e0b704ec71df2c5a0d4dc21304aece2e79e95bf4fba01ee0431d5963a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":2126,"mtime_ns":1783010796441510739,"hash":"181ff34438c057f8cf22ecb7fa36577841e11a22a389e97e2378d690653be005"},"/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":1280,"mtime_ns":1783234723504837640,"hash":"bf1ff4007b9e8aa2bd0442a5a2bf4f5194828006cf8e3fba99817cdad2dff3c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4710,"mtime_ns":1783235508735444591,"hash":"1dd4e13de8685bfb17844898217673ce9dca5e6e8c878296567a8de5a599f1a0"},"/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":36723,"mtime_ns":1783671102562225369,"hash":"7bfc7e8b0104ee42a9653cbd439bbb2c12a7bb5840bef08017cb6f3e93f85721"},"/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":20166,"mtime_ns":1783666224687643537,"hash":"962704b45cef9adf358f089e6ca1282c649de48375527eaa85ccecf1ecd9ab63"},"/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":11771,"mtime_ns":1783748636469237267,"hash":"a78c20d17118d4d2398bbdffc84bff7adbdc12998a299faadb6cb21341670431"},"/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":15082,"mtime_ns":1783569345777287102,"hash":"969c6a645198cf9b930a5d4fa203adab490ce59bca3460cb410ae040a333cbac"},"/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":14801,"mtime_ns":1783747505447384600,"hash":"f743a4e7e0f60c56ea925fe5f57fabcadd3fe75940207837c2db9133507c87fc"},"/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":6110,"mtime_ns":1783499999991507683,"hash":"b115b424de4b74d226eb0519d0285a2c6397f9d8e1afdbc4de3b8d9776e00bb7"},"/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":31708,"mtime_ns":1783569345777886644,"hash":"e9d63073d11ef51c3cc5bf4010394485ae27190d29b5997edbd5ade0f9a14617"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1783666791928124714,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":23969,"mtime_ns":1783569345778079977,"hash":"fc1f5be7a63295184a69a7c63af90e9d6f03c74dbd27b854f65d72965cac06a9"},"/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":21855,"mtime_ns":1783491664293447366,"hash":"c21a4fe093a52c6f4b73e50259282f2f50f30831b19250ab6308d66ce4e2d7b2"},"/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":6894,"mtime_ns":1783235773210706870,"hash":"1d6915cccf364cf13b21f3258d454831c311fb1bf1c0c88a295cf5694fff1889"},"/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":1933,"mtime_ns":1783423497551393748,"hash":"a8e8a22c1e371890913e78f210ab6cbf36b0f47220e4fabad8c874c284af29ee"},"/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":12400,"mtime_ns":1783500476952532681,"hash":"761c1d9fe055e628d59a006628f52163f49f6cc3499b6d7480baa67386ae8b88"},"/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":1042,"mtime_ns":1782929739410604413,"hash":"1ea5a9d3ace2fce4b476ccb2b0954b06f3d4c364fa9e7aa9d77c25a8a6631d1c"},"/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":3156,"mtime_ns":1783664104075507029,"hash":"c7f6f6958ff7097db77960d3d29e72ba9563bcf13fad264ccbd8af92b989dc5d"},"/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":5536,"mtime_ns":1783499837163827969,"hash":"d80eb9b3053cccc4a29926832b4839ea7d17ac6fbdcb342dfd251b2130bd1c41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5741,"mtime_ns":1783500035987979007,"hash":"48be2043d1b5dfe9b37580383626be174696d5735c51486220080c10b89dd5b5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":50422,"mtime_ns":1783500944157597451,"hash":"473d523b14d8547b6262421099146299a580664c5ac61082eb835a4c1c18462a"},"/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":11859,"mtime_ns":1783499652565190714,"hash":"90101a086fb74c753ac6f26202ac1f850a6dda487f46fe489d456458596c6487"},"/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"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Command/PruneLogsCommand.php":{"size":866,"mtime_ns":1782929791849281801,"hash":"e80ac76c51bb7ac78fe69679cbe82454f65f5ba6b35d3b3c3a01260698c35c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/LogPruneService.php":{"size":883,"mtime_ns":1782929784989711179,"hash":"9fe084116ccdb7a551ccae4c8d48626f7370549ae386e31c112cb579d8647ba6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Message/PruneLogsMessage.php":{"size":73,"mtime_ns":1782929786004422877,"hash":"d060dc486c8bcd48d507d001c65b68f4e3b84eb5cdccede2272bcfd2437ca142"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/MessageHandler/PruneLogsHandler.php":{"size":463,"mtime_ns":1782929788291896556,"hash":"20acb36c09cd00f50865c9d8bd04f8234eb0a76285a744e34d5cd2e50e3f4eaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702063537.php":{"size":651,"mtime_ns":1782974183036403270,"hash":"2d3311a9342c690139154fabd01bcf942f32b1533612dbdf7de677ee04dc34db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ios-safari-css-fallbacks.md":{"size":9046,"mtime_ns":1782975691974719871,"hash":"48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702115209.php":{"size":962,"mtime_ns":1782993164666143613,"hash":"821f2b858cff251eebc74ac92b4b9263c24dbaffaa34e05b03b2324186bbeb08"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/PaymentLog.php":{"size":2358,"mtime_ns":1783010796435723748,"hash":"14cb8d07e807806c11ce8602cae3bcd05b3d639dd8698c78f262136fced58b37"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/GatewayFactory.php":{"size":3532,"mtime_ns":1783010796436002206,"hash":"587b83007d7a8d0ac0d45c6a3c8108d3e0dde9568168144061e182fa1f7767c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentRefundResult.php":{"size":331,"mtime_ns":1783010796438108203,"hash":"2bc320c00a5049780d14735c7ff72b376159b6535e94c3993ae15d43ad72e548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentLogRepository.php":{"size":577,"mtime_ns":1782993118701194485,"hash":"06bcfbcd017b77e4ad6f855cc6f3184bf863fe3f29641fca8c4a8d4f48bf6be8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/PaymentManager.php":{"size":20348,"mtime_ns":1783569345780853355,"hash":"8f5af952c994559d4ca21e87957017826685729dd8b5c5bf59c3c9b3c3b02287"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/MellatGatewayTest.php":{"size":735,"mtime_ns":1782984645104304163,"hash":"94d88c7055fe1be78f52d3dcc56078b62bbad4a24a1d7c5ffad6f86e9d5e2c7e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-mobile-responsive.md":{"size":11674,"mtime_ns":1783014366933033009,"hash":"852ccdcc3659967ca4aab8059adec237b69e5fb8416d951b052cdf7eb647f9a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-payment-refund-reversal.md":{"size":15214,"mtime_ns":1783010796431742588,"hash":"e55052916115c1c67bcbd5ee1f39be8454ab3eb77d82902f271f52433da4951d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-appointment-notification-sms.md":{"size":7985,"mtime_ns":1783012880392028526,"hash":"16f20ad212e905030ddb53ae8899b9b185eee3bf094ef7782437156a83808f2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-experience-activity-date.md":{"size":12376,"mtime_ns":1782978755921887105,"hash":"062541c7937a458a5c0aa4245699f9b6c5343cdc7551aebf36af5e3c1ca95b2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-admin-modal-and-calendar.md":{"size":9611,"mtime_ns":1782979774560814821,"hash":"fe83975f003f964e3ae9fc1ac9c0b5354ce8cf02fe51ef3dfaee6b3a766a2452"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctors-list-location-filter.md":{"size":12852,"mtime_ns":1782977589946540539,"hash":"cba39cdd0c017cb66792a6c4707e1cd9f060c8c03e9f7b16878a0ddae96a616d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mellat-production-soap.md":{"size":11655,"mtime_ns":1783010796432002379,"hash":"57bef1c36673ed6135d976b61ae551e590fb757e403fcfce8475ad4950ffabe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mellat-sandbox-gateway.md":{"size":13487,"mtime_ns":1783010796432293420,"hash":"de2aec27fbadc4dd88f1587822b349985073b32d1c9f09f54642f3d56a21fffa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-flow-architecture.md":{"size":13171,"mtime_ns":1782992901105315211,"hash":"9ae4872e0ca49d602b246c6c04e97dc6476a3fbbc4bf29c43dee8cca84e8307e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-single-flow-consolidation.md":{"size":12823,"mtime_ns":1782994765480242696,"hash":"4e04a45a73afaa8b4a0c80552519e5cd1dbc641f1b9dbe8e2d70bdb974c37111"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-price-and-wallet-settings.md":{"size":9735,"mtime_ns":1782998857276789821,"hash":"cbb79a9bd90c62fcd753606137f8d384a1cdbb47164c4879400c93919dae09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260703085828.php":{"size":867,"mtime_ns":1783069119205310313,"hash":"c627a3c2239ef4caae61a87ac9b189d97886576d9f151b3b64ece5f8e5c5e325"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705070546.php":{"size":1214,"mtime_ns":1783235160126438474,"hash":"4e02d6033fc62b44eddabfdedabfcecea984630a43bf651af2eb3620a617ee9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705072835.php":{"size":2428,"mtime_ns":1783236836060491368,"hash":"5a3681228a5349171fba0c11c024024e75a40d303f6d2695cfa9096a48d8b21c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705081716.php":{"size":2217,"mtime_ns":1783239466992612707,"hash":"053bcd79fc331f32d94a31317b83fbb4925d3ed129e9f974c935e74925186c68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Sms/SmsServiceLookupOnlyTest.php":{"size":5242,"mtime_ns":1783456125443604411,"hash":"e6a7bc771a3d4c785af5c6b7db13dca677e1953b2cfb26e604cb353c2e5a6bd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-pro-promo-video.md":{"size":10920,"mtime_ns":1783245223582403990,"hash":"61af8b73d12e2eeb2acfa40fd359218d83e1a7eb2187a8dbf881c70c761ac9f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/currency-toman-display-admin.md":{"size":8321,"mtime_ns":1783060267941162529,"hash":"90c735ff59081e8af302d91dadf9eed20d877f17154cfc1df58c1852bb82f1a5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/expired-appointment-blocks-payment.md":{"size":10679,"mtime_ns":1783059494354544687,"hash":"94824beb21147a04f6d699242d4dd586127ba983fb48d74e73919a2b125b64a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-modal-portal-positioning.md":{"size":8120,"mtime_ns":1783189568446030666,"hash":"8b407ba218adf3d2dd670f58379fe3ad658b0df9b6c5a45cbf6d54323d4449ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/otp-sms-site-name.md":{"size":9080,"mtime_ns":1783070793009698214,"hash":"300c3b5f55738ef62b573163272078d6ac3d5ac0d61393dc9bfbcb75532781f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/otp-via-kavenegar-lookup.md":{"size":10815,"mtime_ns":1783151621410073439,"hash":"116fabb2150ad9157f2a59c6b42ab8af4c4100c6b0bfffa8a48a84db50da6d1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-lookup-only.md":{"size":9841,"mtime_ns":1783421842166664361,"hash":"32a4e3ffaacba3c1a02652cd46380ec298569d36b6938495ff858175e31e9332"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-verify-lookup-templates.md":{"size":17062,"mtime_ns":1783236336652480520,"hash":"d891097629add975bb30ebf1770536544a2df95270359c4fd75471e43be0ff7a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/DependencyInjection/CorsRegexEnvProcessor.php":{"size":1417,"mtime_ns":1783423339918379070,"hash":"610d9a1710e853a246efd84e13cf20944b9d921d162d4d6e50315e8185d34dc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/CorsRegexEnvProcessorTest.php":{"size":2522,"mtime_ns":1783423530411102164,"hash":"6eca57bd6f1e720d0c8649acded03d3a6f5434544bfb6f6cafaab3e462d542ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/cors-regex-from-hosts-coolify-safe.md":{"size":10867,"mtime_ns":1783423233682261850,"hash":"f48fd368e9e878730fe06cfb0a6d201125d6ec0939166dd3e75eeac6c1eda620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260707202553.php":{"size":786,"mtime_ns":1783455961508537079,"hash":"bb677fe6041e10d486539f4125654adbad48125481c892c44ded8f61452409ec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Sms/KavehNegarProviderTest.php":{"size":1952,"mtime_ns":1783491609892729695,"hash":"4527c1eeebd79828e19e57ab6b2aa32a144401c40ac10e593f585a00d7e8e9bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-restart-diagnosis-hardening.md":{"size":8796,"mtime_ns":1783497150563049693,"hash":"06e591a50e6b36a2a999a2b3feea53abde66a2edf84f49cebaa7a9da7d0d3cb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-kavenegar-sms-errors.md":{"size":10465,"mtime_ns":1783491468913393002,"hash":"911e63cefac9708e7170a804ded38638a265a94c2b8f8d7381ead7ba35f7c30c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-prod-soap-extension.md":{"size":6219,"mtime_ns":1783490610538563465,"hash":"9dd5ff799a5932287ed13efd8533b8bd3a2a564db90c20584bfa4890fc6fd6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ops-restarts.md":{"size":12951,"mtime_ns":1783528554195114238,"hash":"a9cf9bc5f68122f8b077138ee8ee76916407a34814806989fa09192962701bd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260708083446.php":{"size":766,"mtime_ns":1783499693032278579,"hash":"1df2d053159ae991d2efe948e1cbc5e8f5f4a349f9c61fa850cd0a252f57db23"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/collect-diagnostics.sh":{"size":2232,"mtime_ns":1783528559094529355,"hash":"4986640559d6ef107162eedd9eea40a6134b0e8f8e44b35d362a96001b735648"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/server-down-oom-diagnosis.md":{"size":9569,"mtime_ns":1783520770245126273,"hash":"c79306d1d395019b2c945cb8bc26443f1d1a311c82adbca67cd6a53ef6021586"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260709033925.php":{"size":2446,"mtime_ns":1783569345800595414,"hash":"7dc79782c05c144c5319c483ceb318f55afe334c70bdda309cd42f109ef5d352"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/SiteContextController.php":{"size":2168,"mtime_ns":1783569345800759789,"hash":"987af1ca119180771f6305de4886ee6b0bc49477020e7f9151578d36ffae67cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/DomainContext.php":{"size":672,"mtime_ns":1783569345800949456,"hash":"60331aef5f3b52906723ceb6426e968c83172cf728cd8ee8dc098c837fcf1da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/DomainContextResolver.php":{"size":2984,"mtime_ns":1783571733722936912,"hash":"2b1328889662faa34649c8cccf7c424668eda9ca86179063773ab8b2ff100d0f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/DomainCommissionTest.php":{"size":6122,"mtime_ns":1783571798429778759,"hash":"b1532c1bace1c311a535123c1ce71cd6d3970d33c870fd6aea2909d60bd826a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-multi-city-domain-commission.md":{"size":13329,"mtime_ns":1783569345800353081,"hash":"55853bb2d2c79fee977be9361d34d981b536c81547093f6e65da782c763388ed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Command/SeedDemoDataCommand.php":{"size":42655,"mtime_ns":1783570794260767694,"hash":"0eba4d7c312a02ad5745899831c77d4cf3227353770f79e95f11d99fbc6178a3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-demo-data.md":{"size":13515,"mtime_ns":1783570038522232126,"hash":"0d123d7758cafa22feb9cfc8b42976710f2a1234cc684bfb18ca8ed5b65b2865"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/AltchaService.php":{"size":3428,"mtime_ns":1783670847580379572,"hash":"c2adf04ae3019f5119a6007457028453ba403beca0bbfb162290066286b918db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/CaptchaController.php":{"size":1946,"mtime_ns":1783671346565965285,"hash":"f9e515ae850f35c611aeac4a11c12e7d421bcd7dea5e4de7cf02fe2761f26a96"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/CaptchaGuard.php":{"size":945,"mtime_ns":1783666097114071341,"hash":"0849c4c39bf752e5f94477e82ef9080245cde06f6fc59bac80a5b5a0f0f7eecc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/Captcha/AltchaServiceTest.php":{"size":3976,"mtime_ns":1783670997895296219,"hash":"c9aa6726c3f0a4ad88ab4b4362e92dc7c8ff5edc3e9e638ca5ce752ce98f10e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/Captcha/CaptchaFlowTest.php":{"size":1524,"mtime_ns":1783666097116539419,"hash":"63bfddb2b2dd14542521febeda5cc3584ed8c08eb27e1983dfeb1657154b3f7f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/altcha-captcha-integration.md":{"size":13652,"mtime_ns":1783666097111438097,"hash":"c435895b86893a68c87144f4f70cb4e75f26bfbfc99390769c837c450dfb3a21"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/captcha.md":{"size":4499,"mtime_ns":1783671083475236483,"hash":"c5efe6576f91c4e5ac99f40a7e194291c5608cc499d4d0c5808ffa24a13c4833"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711120000.php":{"size":1954,"mtime_ns":1783747563619912670,"hash":"a3a80739d80f3ec6f14ec0752fef0a8949ed9bc68c6dbc2319c8f7c03d6bc3df"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php":{"size":4088,"mtime_ns":1783747644311393550,"hash":"841e8fae88ae7b54c385fba51a967086bc0fcbdd0ca2fc02093721cd32d9ce62"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-error-logs-20260711.md":{"size":13006,"mtime_ns":1783746878999337980,"hash":"5837c54848ea076f11477168837315787273dd07993a0b6b7490e67b18bda279"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/scenarios/irimc-doctor-import-ownership.md":{"size":25530,"mtime_ns":1783692850449412869,"hash":"e336c0544292e117a0caf6be96ea5aa6b661a5732f812c575ebdbea880e7b742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationWebController.php":{"size":3885,"mtime_ns":1783748162455786021,"hash":"e046c7ece47b7926299df78f70b2f5b16b91c81fe6f6fcdea14c1118c87664cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-invitation-twig-page.md":{"size":16958,"mtime_ns":1783747981254264802,"hash":"09f2b24cf1b2a446fb61047dddf3c1a1ed5489d4ebfb86fb262c1029e308119c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-import.md":{"size":6014,"mtime_ns":1783747979927659295,"hash":"8cddf5de36a085041c03fa8d17159dd75920af9fd1ef8a410e8a3900592506f7"}}
\ 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":3144,"mtime_ns":1783666096953896975,"hash":"0f897db099d2ec763d97567742429eb682a7b6f955187cd2382b2df8957bd09a"},"/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":2380,"mtime_ns":1783666097006385238,"hash":"c2185822b43db5ca6a54b83767776d61b6602130d3d66920219a7ee30faeeeaf"},"/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":1783067213231257247,"hash":"ffb0ad60c98078073b6590566e106ce7f1e2d0a830fe67fed83566e3a9614728"},"/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":109619,"mtime_ns":1783757803148958082,"hash":"feddae9e3310c6852cd14967fd8f527e161d69d67ff377a4a2183efc800ce1ea"},"/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":24353,"mtime_ns":1783569345778808353,"hash":"416d314362c1793e98f5009fed41ee441fb4bf5d01de9b11018bd2fdbf407ea2"},"/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":10213,"mtime_ns":1783059631681371250,"hash":"71772f7b52621ca23f103b0badf87b12d25c430546a5adf6782758c47fc5d0b2"},"/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":36527,"mtime_ns":1783666097009341482,"hash":"1e979b2ea4c50ef051443cc5bd9f5351ac5cc9d8934c67c0c0319e3b36fc3d8b"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/NotificationMobileController.php":{"size":7242,"mtime_ns":1783237168983222014,"hash":"e87024acef4e93a1bddbdd8545b41f9130635d605b1a327ab4ac11661585b71e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Controller/PreRegistrationController.php":{"size":7923,"mtime_ns":1783666097012409392,"hash":"51e53996bd81dece6745b657f1728dd6e02e1dcafe6171f84761e9624dcd0f60"},"/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":5138,"mtime_ns":1783757329075713471,"hash":"993a0f62aea970eb20d665eca9c20d252898656cc83ae37e726e9f60e686916b"},"/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":5168,"mtime_ns":1783757329075939553,"hash":"06cc16b691e8051198421fddf881bdcc116597b6842b2d5cea2faa34c87bce58"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Service/OtpService.php":{"size":3747,"mtime_ns":1783236682997204096,"hash":"ac8f9cfa6d67decc1ff89d2ed61e9eb2ad2034214c015aa072acbbb66be05e97"},"/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":34503,"mtime_ns":1783569345779344103,"hash":"94dc860f300f6e0acf241b7c064dac0153a7746dc1c47ecc814b0d98f9748641"},"/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":4814,"mtime_ns":1783569345779687854,"hash":"dd99a5ee7f77a83f02171272634c9232a425204b86c18b13e6748549882fb1f7"},"/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":5432,"mtime_ns":1783748111777541475,"hash":"d7e3a199244ab8d4259e6fd0124f6b5ef16d6f594ce3e5d46a0a2c4cb8093cfd"},"/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":4232,"mtime_ns":1783748222119807877,"hash":"fbf4386c52cb60e185f2fd9fd9314f686b2bf89312677c104302148133556424"},"/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":3919,"mtime_ns":1783670899286432658,"hash":"abfb7e174b8d2d916580c0cda8c87eaab76ca76d20f014cfc54a0d133c64c866"},"/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":2334,"mtime_ns":1782929759660596058,"hash":"5ea072c77a0f25c8ccdd23616656fce0b88b93408c6cd461d98e9b18a6fa85b2"},"/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":39429,"mtime_ns":1783769018613043143,"hash":"416749471adfa15ec849cbf143456d33bdefddc9d52c52fa593d99598289da84"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/Doctor.php":{"size":19868,"mtime_ns":1783757329076088010,"hash":"4d0e9e93c8e99a5d62dcb5eb7d74b1129024c0ae20343287c1fb3c1f993385e7"},"/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":8292,"mtime_ns":1783569345780537104,"hash":"91ff9fe1543497259c0bf018b7fd0ba5d7d82aa5f96bdb8fc46948fe79473b4b"},"/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":10774,"mtime_ns":1783499628812467561,"hash":"9cf15db59545af81148153a4d9c816748ba267bbbb58f9bec2e00d1853c15e8c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Location/Entity/City.php":{"size":6500,"mtime_ns":1783499619365257750,"hash":"f128c29e22de67f0aad93bbee2a111d976f71344f5a3e55614b477bc86d3192b"},"/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":1312,"mtime_ns":1783569345780697355,"hash":"bfe69ca9f9bd18eaf159f24e63ee4e6fb88ab3d86dea725e9a7c27cba0f6d6d8"},"/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":31102,"mtime_ns":1783059694944318453,"hash":"06f9abb6001a7bf771e905db060daf3e5b6e80f67b4e2521ec377a8a59ca8be2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/Payment.php":{"size":5779,"mtime_ns":1782995955189532682,"hash":"f26e537b012e10faaac23f291ccc341345bb2512c3c4496c4bffea3308086eba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MellatGateway.php":{"size":18056,"mtime_ns":1783747255645554752,"hash":"49fbd65792c12c2b7f97b6dc2f15ac4884fd508d0cb943787e74ba909c9d3def"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/MockGateway.php":{"size":1863,"mtime_ns":1783010796437333621,"hash":"67b67fd5299c1e912359d94dce4c88d5742e2ee324d699fd12333e1a225bcf7e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentGatewayInterface.php":{"size":948,"mtime_ns":1783010796437841370,"hash":"fb3512aff2ebfdbe34c6d5eab4e67dfd5c90fa6dbbf0cec8bd23eac0c2e51734"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentInitResult.php":{"size":663,"mtime_ns":1782981352831261065,"hash":"e474570a753b56888f8fa5458cf7eeafcf7e4ff390429a5f6612bada28f9b401"},"/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":4481,"mtime_ns":1783010796438445827,"hash":"46964086d05dde76b1c0e3bc7f3dae8eab8aa1ac6d9ae609abfb3396eae5aa6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentRepository.php":{"size":3863,"mtime_ns":1782993112274771320,"hash":"f8e7f5bb986225beb28c2d175a78cb1c2dafdc8b99a60779bc1e04834ad1dff0"},"/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":1783666764412828074,"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":41262,"mtime_ns":1783236899056081118,"hash":"73475defd275c9aa8be88f4111486749fce766f658313b0d6fd2a98f7996ee24"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/RepresentationController.php":{"size":25500,"mtime_ns":1783569345781024938,"hash":"196a7389d6828be84bf9cef772cb40a5240e452e10cf28f161bd84e51d2e8cc8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Entity/Representation.php":{"size":8158,"mtime_ns":1783569345781218772,"hash":"33f57eb6ea216ea8173d4459cc6df3a2378487bfb7c681b3025c2606bee54ff0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Repository/RepresentationRepository.php":{"size":2152,"mtime_ns":1783571718895425847,"hash":"a0c1810c03b7a780ba1b14a631b11e0081767fc3e017e57d4b34b62274340b0e"},"/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":1037,"mtime_ns":1782929801207590724,"hash":"e1ed1b5ef5b6100bcb8a1e0d3e361ce40a2721501cdb5f14aa6fba8739654eee"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Secretary/Controller/SecretaryController.php":{"size":10960,"mtime_ns":1783237220892646662,"hash":"21ce325a02909122b15186e4aaf8609886b5e1401d30e4684efade11540c1321"},"/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":5754,"mtime_ns":1783569345781547980,"hash":"2a99307286612b41130a3002490343c9dfde0b0c18906b58f1a6e9e86a1edc14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Constant/ErrorCodes.php":{"size":9863,"mtime_ns":1783747388311953088,"hash":"d65b77e0134024f2a1d3222d6bc9837f71572f7177692a28fcd1d7bbdd4239bd"},"/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":594,"mtime_ns":1783669189781435180,"hash":"5ffa2cd3fcf314ecaae34fa9f8dd7a2db4a3dfe7b8d5250f16eb0a7f2eb6e652"},"/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":6528,"mtime_ns":1783747430565936030,"hash":"1bf9e2fdbbdeb39ef79ec789eef2feed93ab43b4d38d6fb654f99f51ca8f6956"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/EventSubscriber/SecurityHeadersSubscriber.php":{"size":2575,"mtime_ns":1783010796440870365,"hash":"7562c1a0460eb6831ccd6e2ff396ed01256672933fc480a9454dfd202efd0d55"},"/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":5616,"mtime_ns":1783757329076323884,"hash":"845cfe4823c1811705100b4f725eae2f651416f4217810bfcab77953aeff737c"},"/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":1917,"mtime_ns":1783237401025294121,"hash":"04f1982a5c4317dd15ee55dfcbc7c0182f86fbce90766e5a3366fe4f19378c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsController.php":{"size":21883,"mtime_ns":1783422449654674455,"hash":"b15e9b15dedddb501f30a18e46b3c7052cdf5778006913d86f34279e6159ab21"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsMessageController.php":{"size":4630,"mtime_ns":1783237134183460253,"hash":"2869945324e63ed664748e1770ce7065d91428cbd313843814ac4256cd8b2fe8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Controller/SmsWalletController.php":{"size":11400,"mtime_ns":1782998941568914993,"hash":"af47e04758a2a47c3122a567c79aaf3a2638c5c09e2d21308a91b966b1cfe8aa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsLog.php":{"size":3702,"mtime_ns":1783455929824117615,"hash":"937dcaa8618c78e6ac393fe1f6ef06bfa398cc5c392fb469be504d05bd8384ba"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Sms/Entity/SmsMessageTemplate.php":{"size":7545,"mtime_ns":1783239399682426157,"hash":"40fcf700f49544484e460b779e7cd1105a0aac40cf36a805aa69f61f0223d12f"},"/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":4634,"mtime_ns":1783491549884796725,"hash":"05cafa28a8b14f38d40e13f7139dcac2c2b3a4f87fbf07199bdad5dfd0805733"},"/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":4396,"mtime_ns":1783455940747216997,"hash":"22349e84d7bcc71d5c70a286e38f703b30448a5caa66ba9714b8bb805a37f0a3"},"/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":11864,"mtime_ns":1783235518955936576,"hash":"34f7415b9246e4c6bc25a43e9138ca0ac585d5cc664c0b78fe351c6239937a96"},"/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":3881,"mtime_ns":1783233488170274281,"hash":"707633e0b704ec71df2c5a0d4dc21304aece2e79e95bf4fba01ee0431d5963a8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Repository/ClinicSubscriptionRepository.php":{"size":2126,"mtime_ns":1783010796441510739,"hash":"181ff34438c057f8cf22ecb7fa36577841e11a22a389e97e2378d690653be005"},"/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":1280,"mtime_ns":1783234723504837640,"hash":"bf1ff4007b9e8aa2bd0442a5a2bf4f5194828006cf8e3fba99817cdad2dff3c0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Subscription/Service/SubscriptionService.php":{"size":4710,"mtime_ns":1783235508735444591,"hash":"1dd4e13de8685bfb17844898217673ce9dca5e6e8c878296567a8de5a599f1a0"},"/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":36909,"mtime_ns":1783757329074629768,"hash":"d8a425a0281fb8895791c85f3003aa62ab55e84ff1de2a5a171649bf9f4e5818"},"/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":20166,"mtime_ns":1783666224687643537,"hash":"962704b45cef9adf358f089e6ca1282c649de48375527eaa85ccecf1ecd9ab63"},"/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":11771,"mtime_ns":1783748636469237267,"hash":"a78c20d17118d4d2398bbdffc84bff7adbdc12998a299faadb6cb21341670431"},"/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":15082,"mtime_ns":1783569345777287102,"hash":"969c6a645198cf9b930a5d4fa203adab490ce59bca3460cb410ae040a333cbac"},"/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":15432,"mtime_ns":1783769157105151773,"hash":"37e0abb6301621c0888c4a656b37bc60ba1deea4c7f5682270b0a478d51ddd40"},"/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":6110,"mtime_ns":1783499999991507683,"hash":"b115b424de4b74d226eb0519d0285a2c6397f9d8e1afdbc4de3b8d9776e00bb7"},"/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":31708,"mtime_ns":1783569345777886644,"hash":"e9d63073d11ef51c3cc5bf4010394485ae27190d29b5997edbd5ade0f9a14617"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/rating.md":{"size":11090,"mtime_ns":1783666791928124714,"hash":"61914c5f9d29060ba157369cf8e82392cc6b094df3f3a1423904c2988b19def9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/representation.md":{"size":23969,"mtime_ns":1783569345778079977,"hash":"fc1f5be7a63295184a69a7c63af90e9d6f03c74dbd27b854f65d72965cac06a9"},"/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":21855,"mtime_ns":1783491664293447366,"hash":"c21a4fe093a52c6f4b73e50259282f2f50f30831b19250ab6308d66ce4e2d7b2"},"/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":6894,"mtime_ns":1783235773210706870,"hash":"1d6915cccf364cf13b21f3258d454831c311fb1bf1c0c88a295cf5694fff1889"},"/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":1933,"mtime_ns":1783423497551393748,"hash":"a8e8a22c1e371890913e78f210ab6cbf36b0f47220e4fabad8c874c284af29ee"},"/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":12400,"mtime_ns":1783500476952532681,"hash":"761c1d9fe055e628d59a006628f52163f49f6cc3499b6d7480baa67386ae8b88"},"/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":1042,"mtime_ns":1782929739410604413,"hash":"1ea5a9d3ace2fce4b476ccb2b0954b06f3d4c364fa9e7aa9d77c25a8a6631d1c"},"/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":3156,"mtime_ns":1783664104075507029,"hash":"c7f6f6958ff7097db77960d3d29e72ba9563bcf13fad264ccbd8af92b989dc5d"},"/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":5536,"mtime_ns":1783499837163827969,"hash":"d80eb9b3053cccc4a29926832b4839ea7d17ac6fbdcb342dfd251b2130bd1c41"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/category-import.md":{"size":5741,"mtime_ns":1783500035987979007,"hash":"48be2043d1b5dfe9b37580383626be174696d5735c51486220080c10b89dd5b5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/data/seed/cities.json":{"size":50422,"mtime_ns":1783500944157597451,"hash":"473d523b14d8547b6262421099146299a580664c5ac61082eb835a4c1c18462a"},"/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":11859,"mtime_ns":1783499652565190714,"hash":"90101a086fb74c753ac6f26202ac1f850a6dda487f46fe489d456458596c6487"},"/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"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Command/PruneLogsCommand.php":{"size":866,"mtime_ns":1782929791849281801,"hash":"e80ac76c51bb7ac78fe69679cbe82454f65f5ba6b35d3b3c3a01260698c35c6d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/LogPruneService.php":{"size":883,"mtime_ns":1782929784989711179,"hash":"9fe084116ccdb7a551ccae4c8d48626f7370549ae386e31c112cb579d8647ba6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/Message/PruneLogsMessage.php":{"size":73,"mtime_ns":1782929786004422877,"hash":"d060dc486c8bcd48d507d001c65b68f4e3b84eb5cdccede2272bcfd2437ca142"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Logging/MessageHandler/PruneLogsHandler.php":{"size":463,"mtime_ns":1782929788291896556,"hash":"20acb36c09cd00f50865c9d8bd04f8234eb0a76285a744e34d5cd2e50e3f4eaf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702063537.php":{"size":651,"mtime_ns":1782974183036403270,"hash":"2d3311a9342c690139154fabd01bcf942f32b1533612dbdf7de677ee04dc34db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-ios-safari-css-fallbacks.md":{"size":9046,"mtime_ns":1782975691974719871,"hash":"48e210b06690285c3db657ab7a964830ecfc5d826e7624eb0a64df550fdccdca"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260702115209.php":{"size":962,"mtime_ns":1782993164666143613,"hash":"821f2b858cff251eebc74ac92b4b9263c24dbaffaa34e05b03b2324186bbeb08"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Entity/PaymentLog.php":{"size":2358,"mtime_ns":1783010796435723748,"hash":"14cb8d07e807806c11ce8602cae3bcd05b3d639dd8698c78f262136fced58b37"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/GatewayFactory.php":{"size":3532,"mtime_ns":1783010796436002206,"hash":"587b83007d7a8d0ac0d45c6a3c8108d3e0dde9568168144061e182fa1f7767c7"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Gateway/PaymentRefundResult.php":{"size":331,"mtime_ns":1783010796438108203,"hash":"2bc320c00a5049780d14735c7ff72b376159b6535e94c3993ae15d43ad72e548"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Repository/PaymentLogRepository.php":{"size":577,"mtime_ns":1782993118701194485,"hash":"06bcfbcd017b77e4ad6f855cc6f3184bf863fe3f29641fca8c4a8d4f48bf6be8"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Payment/Service/PaymentManager.php":{"size":20348,"mtime_ns":1783569345780853355,"hash":"8f5af952c994559d4ca21e87957017826685729dd8b5c5bf59c3c9b3c3b02287"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Payment/MellatGatewayTest.php":{"size":735,"mtime_ns":1782984645104304163,"hash":"94d88c7055fe1be78f52d3dcc56078b62bbad4a24a1d7c5ffad6f86e9d5e2c7e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-mobile-responsive.md":{"size":11674,"mtime_ns":1783014366933033009,"hash":"852ccdcc3659967ca4aab8059adec237b69e5fb8416d951b052cdf7eb647f9a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/admin-payment-refund-reversal.md":{"size":15214,"mtime_ns":1783010796431742588,"hash":"e55052916115c1c67bcbd5ee1f39be8454ab3eb77d82902f271f52433da4951d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-appointment-notification-sms.md":{"size":7985,"mtime_ns":1783012880392028526,"hash":"16f20ad212e905030ddb53ae8899b9b185eee3bf094ef7782437156a83808f2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-experience-activity-date.md":{"size":12376,"mtime_ns":1782978755921887105,"hash":"062541c7937a458a5c0aa4245699f9b6c5343cdc7551aebf36af5e3c1ca95b2e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-admin-modal-and-calendar.md":{"size":9611,"mtime_ns":1782979774560814821,"hash":"fe83975f003f964e3ae9fc1ac9c0b5354ce8cf02fe51ef3dfaee6b3a766a2452"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctors-list-location-filter.md":{"size":12852,"mtime_ns":1782977589946540539,"hash":"cba39cdd0c017cb66792a6c4707e1cd9f060c8c03e9f7b16878a0ddae96a616d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mellat-production-soap.md":{"size":11655,"mtime_ns":1783010796432002379,"hash":"57bef1c36673ed6135d976b61ae551e590fb757e403fcfce8475ad4950ffabe6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/mellat-sandbox-gateway.md":{"size":13487,"mtime_ns":1783010796432293420,"hash":"de2aec27fbadc4dd88f1587822b349985073b32d1c9f09f54642f3d56a21fffa"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-flow-architecture.md":{"size":13171,"mtime_ns":1782992901105315211,"hash":"9ae4872e0ca49d602b246c6c04e97dc6476a3fbbc4bf29c43dee8cca84e8307e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/payment-single-flow-consolidation.md":{"size":12823,"mtime_ns":1782994765480242696,"hash":"4e04a45a73afaa8b4a0c80552519e5cd1dbc641f1b9dbe8e2d70bdb974c37111"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-price-and-wallet-settings.md":{"size":9735,"mtime_ns":1782998857276789821,"hash":"cbb79a9bd90c62fcd753606137f8d384a1cdbb47164c4879400c93919dae09bc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260703085828.php":{"size":867,"mtime_ns":1783069119205310313,"hash":"c627a3c2239ef4caae61a87ac9b189d97886576d9f151b3b64ece5f8e5c5e325"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705070546.php":{"size":1214,"mtime_ns":1783235160126438474,"hash":"4e02d6033fc62b44eddabfdedabfcecea984630a43bf651af2eb3620a617ee9f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705072835.php":{"size":2428,"mtime_ns":1783236836060491368,"hash":"5a3681228a5349171fba0c11c024024e75a40d303f6d2695cfa9096a48d8b21c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260705081716.php":{"size":2217,"mtime_ns":1783239466992612707,"hash":"053bcd79fc331f32d94a31317b83fbb4925d3ed129e9f974c935e74925186c68"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Sms/SmsServiceLookupOnlyTest.php":{"size":5242,"mtime_ns":1783456125443604411,"hash":"e6a7bc771a3d4c785af5c6b7db13dca677e1953b2cfb26e604cb353c2e5a6bd4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-pro-promo-video.md":{"size":10920,"mtime_ns":1783245223582403990,"hash":"61af8b73d12e2eeb2acfa40fd359218d83e1a7eb2187a8dbf881c70c761ac9f9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/currency-toman-display-admin.md":{"size":8321,"mtime_ns":1783060267941162529,"hash":"90c735ff59081e8af302d91dadf9eed20d877f17154cfc1df58c1852bb82f1a5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/expired-appointment-blocks-payment.md":{"size":10679,"mtime_ns":1783059494354544687,"hash":"94824beb21147a04f6d699242d4dd586127ba983fb48d74e73919a2b125b64a2"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-modal-portal-positioning.md":{"size":8120,"mtime_ns":1783189568446030666,"hash":"8b407ba218adf3d2dd670f58379fe3ad658b0df9b6c5a45cbf6d54323d4449ff"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/otp-sms-site-name.md":{"size":9080,"mtime_ns":1783070793009698214,"hash":"300c3b5f55738ef62b573163272078d6ac3d5ac0d61393dc9bfbcb75532781f1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/otp-via-kavenegar-lookup.md":{"size":10815,"mtime_ns":1783151621410073439,"hash":"116fabb2150ad9157f2a59c6b42ab8af4c4100c6b0bfffa8a48a84db50da6d1d"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-lookup-only.md":{"size":9841,"mtime_ns":1783421842166664361,"hash":"32a4e3ffaacba3c1a02652cd46380ec298569d36b6938495ff858175e31e9332"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/sms-verify-lookup-templates.md":{"size":17062,"mtime_ns":1783236336652480520,"hash":"d891097629add975bb30ebf1770536544a2df95270359c4fd75471e43be0ff7a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/DependencyInjection/CorsRegexEnvProcessor.php":{"size":1417,"mtime_ns":1783423339918379070,"hash":"610d9a1710e853a246efd84e13cf20944b9d921d162d4d6e50315e8185d34dc5"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/CorsRegexEnvProcessorTest.php":{"size":2522,"mtime_ns":1783423530411102164,"hash":"6eca57bd6f1e720d0c8649acded03d3a6f5434544bfb6f6cafaab3e462d542ea"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/cors-regex-from-hosts-coolify-safe.md":{"size":10867,"mtime_ns":1783423233682261850,"hash":"f48fd368e9e878730fe06cfb0a6d201125d6ec0939166dd3e75eeac6c1eda620"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260707202553.php":{"size":786,"mtime_ns":1783455961508537079,"hash":"bb677fe6041e10d486539f4125654adbad48125481c892c44ded8f61452409ec"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Sms/KavehNegarProviderTest.php":{"size":1952,"mtime_ns":1783491609892729695,"hash":"4527c1eeebd79828e19e57ab6b2aa32a144401c40ac10e593f585a00d7e8e9bb"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/coolify-restart-diagnosis-hardening.md":{"size":8796,"mtime_ns":1783497150563049693,"hash":"06e591a50e6b36a2a999a2b3feea53abde66a2edf84f49cebaa7a9da7d0d3cb9"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-kavenegar-sms-errors.md":{"size":10465,"mtime_ns":1783491468913393002,"hash":"911e63cefac9708e7170a804ded38638a265a94c2b8f8d7381ead7ba35f7c30c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-prod-soap-extension.md":{"size":6219,"mtime_ns":1783490610538563465,"hash":"9dd5ff799a5932287ed13efd8533b8bd3a2a564db90c20584bfa4890fc6fd6a6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/ops-restarts.md":{"size":12951,"mtime_ns":1783528554195114238,"hash":"a9cf9bc5f68122f8b077138ee8ee76916407a34814806989fa09192962701bd3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260708083446.php":{"size":766,"mtime_ns":1783499693032278579,"hash":"1df2d053159ae991d2efe948e1cbc5e8f5f4a349f9c61fa850cd0a252f57db23"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/collect-diagnostics.sh":{"size":2232,"mtime_ns":1783528559094529355,"hash":"4986640559d6ef107162eedd9eea40a6134b0e8f8e44b35d362a96001b735648"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/server-down-oom-diagnosis.md":{"size":9569,"mtime_ns":1783520770245126273,"hash":"c79306d1d395019b2c945cb8bc26443f1d1a311c82adbca67cd6a53ef6021586"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260709033925.php":{"size":2446,"mtime_ns":1783569345800595414,"hash":"7dc79782c05c144c5319c483ceb318f55afe334c70bdda309cd42f109ef5d352"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Controller/SiteContextController.php":{"size":2168,"mtime_ns":1783569345800759789,"hash":"987af1ca119180771f6305de4886ee6b0bc49477020e7f9151578d36ffae67cf"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/DomainContext.php":{"size":672,"mtime_ns":1783569345800949456,"hash":"60331aef5f3b52906723ceb6426e968c83172cf728cd8ee8dc098c837fcf1da4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Representation/Service/DomainContextResolver.php":{"size":2984,"mtime_ns":1783571733722936912,"hash":"2b1328889662faa34649c8cccf7c424668eda9ca86179063773ab8b2ff100d0f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Representation/DomainCommissionTest.php":{"size":6122,"mtime_ns":1783571798429778759,"hash":"b1532c1bace1c311a535123c1ce71cd6d3970d33c870fd6aea2909d60bd826a0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/representation-multi-city-domain-commission.md":{"size":13329,"mtime_ns":1783569345800353081,"hash":"55853bb2d2c79fee977be9361d34d981b536c81547093f6e65da782c763388ed"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Command/SeedDemoDataCommand.php":{"size":42655,"mtime_ns":1783570794260767694,"hash":"0eba4d7c312a02ad5745899831c77d4cf3227353770f79e95f11d99fbc6178a3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/seed-demo-data.md":{"size":13515,"mtime_ns":1783570038522232126,"hash":"0d123d7758cafa22feb9cfc8b42976710f2a1234cc684bfb18ca8ed5b65b2865"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/AltchaService.php":{"size":3428,"mtime_ns":1783670847580379572,"hash":"c2adf04ae3019f5119a6007457028453ba403beca0bbfb162290066286b918db"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/CaptchaController.php":{"size":1946,"mtime_ns":1783671346565965285,"hash":"f9e515ae850f35c611aeac4a11c12e7d421bcd7dea5e4de7cf02fe2761f26a96"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Captcha/CaptchaGuard.php":{"size":945,"mtime_ns":1783666097114071341,"hash":"0849c4c39bf752e5f94477e82ef9080245cde06f6fc59bac80a5b5a0f0f7eecc"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/Captcha/AltchaServiceTest.php":{"size":3976,"mtime_ns":1783670997895296219,"hash":"c9aa6726c3f0a4ad88ab4b4362e92dc7c8ff5edc3e9e638ca5ce752ce98f10e1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/Captcha/CaptchaFlowTest.php":{"size":1524,"mtime_ns":1783666097116539419,"hash":"63bfddb2b2dd14542521febeda5cc3584ed8c08eb27e1983dfeb1657154b3f7f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/altcha-captcha-integration.md":{"size":13652,"mtime_ns":1783666097111438097,"hash":"c435895b86893a68c87144f4f70cb4e75f26bfbfc99390769c837c450dfb3a21"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/captcha.md":{"size":4499,"mtime_ns":1783671083475236483,"hash":"c5efe6576f91c4e5ac99f40a7e194291c5608cc499d4d0c5808ffa24a13c4833"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711120000.php":{"size":1954,"mtime_ns":1783747563619912670,"hash":"a3a80739d80f3ec6f14ec0752fef0a8949ed9bc68c6dbc2319c8f7c03d6bc3df"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Auth/Command/SystemOwnerCommand.php":{"size":4572,"mtime_ns":1783757329075503889,"hash":"b1d57632d5457ef2f35dd2795e67392c01372e295862beed0ebae8027935f879"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-server-error-logs-20260711.md":{"size":13006,"mtime_ns":1783746878999337980,"hash":"5837c54848ea076f11477168837315787273dd07993a0b6b7490e67b18bda279"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/scenarios/irimc-doctor-import-ownership.md":{"size":25530,"mtime_ns":1783692850449412869,"hash":"e336c0544292e117a0caf6be96ea5aa6b661a5732f812c575ebdbea880e7b742"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/ClinicInvitation/Controller/ClinicInvitationWebController.php":{"size":3885,"mtime_ns":1783748162455786021,"hash":"e046c7ece47b7926299df78f70b2f5b16b91c81fe6f6fcdea14c1118c87664cd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/clinic-invitation-twig-page.md":{"size":16958,"mtime_ns":1783747981254264802,"hash":"09f2b24cf1b2a446fb61047dddf3c1a1ed5489d4ebfb86fb262c1029e308119c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-import.md":{"size":10119,"mtime_ns":1783766160064325039,"hash":"8fac38bd8a0c0f92aebb516d01709532f0bec4ec9bfd2f2b44ae6d72dc15ac44"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711150000.php":{"size":2107,"mtime_ns":1783757329090467643,"hash":"3acf757cabaaf6f03f19f0280886adbdef3bc873f8f5c31979a70cb87984646e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/migrations/Version20260711151000.php":{"size":1946,"mtime_ns":1783757329090569143,"hash":"63fc3658c738a551aa698760fa3651a8dd0379c104cddb01ce2e22a53085e1d0"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/BackfillSurrogateRoleCommand.php":{"size":2784,"mtime_ns":1783757329090720225,"hash":"2db1048374fc6c0916385e12acf4bd976d6230661af40e7bce3d1d8e125dc543"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorClaimController.php":{"size":9719,"mtime_ns":1783768981008648444,"hash":"4b0e0251d1b9331ee58fc182d1a51a2e2297a3f5211886432403a8e8535d3a76"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Controller/DoctorImportController.php":{"size":4257,"mtime_ns":1783757329091107390,"hash":"e1db933b14ab404edb5b5862a4301869c091b70f4f50e38af29d55d1956ddad1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Entity/DoctorClaimRequest.php":{"size":4382,"mtime_ns":1783757329091329472,"hash":"d2aac83cae844b48d2461796bd4af8c2bff124fde3f67c3936c44104885c2bb6"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Repository/DoctorClaimRequestRepository.php":{"size":406,"mtime_ns":1783757329091431888,"hash":"5c7eab10c6736e17eccbecc792fe70dc4da0be7a80172bf3a1589a521258655a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorClaimService.php":{"size":10047,"mtime_ns":1783757329091603263,"hash":"855bb94d9ef0a255a34675bc2903b85fde5cdbefd420582b8d32abc2e9eda222"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportResult.php":{"size":274,"mtime_ns":1783757329091700179,"hash":"038be06f3d873ea3546409d85a4bb7ac25dcf88be1b38eb524cbafd55674b3a1"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Service/DoctorImportService.php":{"size":7046,"mtime_ns":1783766986873818718,"hash":"7e99c6ac299dcc704fa82e35341b0d933f80d0290e6851e0c5d7e8c67a44bf4f"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Shared/Util/PersianText.php":{"size":2197,"mtime_ns":1783765891987452597,"hash":"af59e4c78dd2af8b4fa27e171650c7e12f7b0c656b944634bdb38b2a3b4d0fa3"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorClaimTest.php":{"size":10962,"mtime_ns":1783769087937134086,"hash":"c50066c8bd8a380b1536fe3928bd63f7687b5ba6fe066b54b0ea45f4c44a7422"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Doctor/DoctorImportTest.php":{"size":6192,"mtime_ns":1783766996494613013,"hash":"c18c03b15b41f7a206dc90d63428de7fbcefdb1cab1ef0e6b2202fe4ccda553e"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/tests/Shared/PersianTextTest.php":{"size":1743,"mtime_ns":1783765905103000272,"hash":"5b9cc4215a15c89facbacc3e796147edcd9915d547d75fddeb9477a3636e0afd"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/irimc-import-complete.md":{"size":37407,"mtime_ns":1783757329073687690,"hash":"0a758a07dc85ab8b8efd8e31066b95be74b7bbbd44217cfeb58f0226d2ada045"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/api/doctor-claim.md":{"size":7927,"mtime_ns":1783769130295199472,"hash":"4dfa2a1a2a64648f2fdec17dc619423ea3ae2b5eb36fabbca78cf6b02b044002"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/scenarios/climed.md":{"size":13939,"mtime_ns":1783753889765190487,"hash":"f465cea10ffa3b87699a78ddbb172e9b305ef3af5ddd1161c12503502f2b3ea4"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/scenarios/crawler.md":{"size":4496,"mtime_ns":1783754133317661143,"hash":"67087730cd4c223d14bf6645e1581b9bbf3510748777fb04c73184295924831a"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md":{"size":8853,"mtime_ns":1783751951896895139,"hash":"0037895218fb8fc10ef713264da551cee07a8a3cc268927aca0d0d3e70003b94"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/FixIrimcNamesCommand.php":{"size":2536,"mtime_ns":1783766017252686460,"hash":"1f37217049a8ca479d497bb907bafb8f9bcc2e265fb08195460c0f397733a972"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/src/Doctor/Command/PurgeDoctorsCommand.php":{"size":3944,"mtime_ns":1783766065697639107,"hash":"b7801eae1d8e5515a35c3c99e9d2858204c660975c0e17f35ec38a0d1afcfc5c"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/fix-doctor-name-and-purge.md":{"size":9117,"mtime_ns":1783765695148288184,"hash":"2cb340da1777982d5574a2b0814759c29b69df1c17c980a29833e9cb256eaf14"},"/Users/hamed/pj/my_pj/clinic_pro/clinicpro/.claude/prompt/doctor-map-claim-captcha-delete.md":{"size":9761,"mtime_ns":1783768547596768482,"hash":"02bf0d9faa621403a1f4e81f2c60384dd1ca334887d5de779e595be0633836ce"}}
\ No newline at end of file
diff --git a/graphify-out/graph.json b/graphify-out/graph.json
index 8c357b7c..bc26b913 100644
--- a/graphify-out/graph.json
+++ b/graphify-out/graph.json
@@ -17,7 +17,7 @@
"label": "ALLOWED_ROLES",
"file_type": "code",
"source_file": "assets/admin/App.tsx",
- "source_location": "L55",
+ "source_location": "L56",
"_origin": "ast",
"id": "admin_app_allowed_roles",
"community": 0,
@@ -27,7 +27,7 @@
"label": "PrivateRoute()",
"file_type": "code",
"source_file": "assets/admin/App.tsx",
- "source_location": "L57",
+ "source_location": "L58",
"_origin": "ast",
"id": "admin_app_privateroute",
"community": 0,
@@ -37,7 +37,7 @@
"label": "PublicRoute()",
"file_type": "code",
"source_file": "assets/admin/App.tsx",
- "source_location": "L94",
+ "source_location": "L95",
"_origin": "ast",
"id": "admin_app_publicroute",
"community": 0,
@@ -47,7 +47,7 @@
"label": "RoleRoute()",
"file_type": "code",
"source_file": "assets/admin/App.tsx",
- "source_location": "L99",
+ "source_location": "L100",
"_origin": "ast",
"id": "admin_app_roleroute",
"community": 0,
@@ -57,7 +57,7 @@
"label": "App()",
"file_type": "code",
"source_file": "assets/admin/App.tsx",
- "source_location": "L113",
+ "source_location": "L114",
"_origin": "ast",
"id": "admin_app_app",
"community": 0,
@@ -240,7 +240,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "components_tenantinsurancecontracts",
- "community": 451,
+ "community": 33,
"norm_label": "tenantinsurancecontracts.tsx"
},
{
@@ -250,7 +250,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "components_tenantinsurancecontracts_contract",
- "community": 451,
+ "community": 33,
"norm_label": "contract"
},
{
@@ -260,7 +260,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "components_tenantinsurancecontracts_insuranceoption",
- "community": 451,
+ "community": 33,
"norm_label": "insuranceoption"
},
{
@@ -270,7 +270,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "components_tenantinsurancecontracts_kind_label",
- "community": 451,
+ "community": 33,
"norm_label": "kind_label"
},
{
@@ -280,7 +280,7 @@
"source_location": "L31",
"_origin": "ast",
"id": "components_tenantinsurancecontracts_tenantinsurancecontracts",
- "community": 451,
+ "community": 33,
"norm_label": "tenantinsurancecontracts()"
},
{
@@ -347,7 +347,7 @@
"label": "ROLE_LABELS",
"file_type": "code",
"source_file": "assets/admin/components/layout/Sidebar.tsx",
- "source_location": "L420",
+ "source_location": "L421",
"_origin": "ast",
"id": "layout_sidebar_role_labels",
"community": 8,
@@ -357,7 +357,7 @@
"label": "HUES",
"file_type": "code",
"source_file": "assets/admin/components/layout/Sidebar.tsx",
- "source_location": "L429",
+ "source_location": "L430",
"_origin": "ast",
"id": "layout_sidebar_hues",
"community": 8,
@@ -367,7 +367,7 @@
"label": "avatarBg()",
"file_type": "code",
"source_file": "assets/admin/components/layout/Sidebar.tsx",
- "source_location": "L431",
+ "source_location": "L432",
"_origin": "ast",
"id": "layout_sidebar_avatarbg",
"community": 8,
@@ -377,7 +377,7 @@
"label": "Props",
"file_type": "code",
"source_file": "assets/admin/components/layout/Sidebar.tsx",
- "source_location": "L436",
+ "source_location": "L437",
"_origin": "ast",
"id": "layout_sidebar_props",
"community": 8,
@@ -387,7 +387,7 @@
"label": "Sidebar()",
"file_type": "code",
"source_file": "assets/admin/components/layout/Sidebar.tsx",
- "source_location": "L441",
+ "source_location": "L442",
"_origin": "ast",
"id": "layout_sidebar_sidebar",
"community": 8,
@@ -690,7 +690,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_modal",
- "community": 33,
+ "community": 340,
"norm_label": "modal.tsx"
},
{
@@ -700,7 +700,7 @@
"source_location": "L5",
"_origin": "ast",
"id": "ui_modal_modalsize",
- "community": 33,
+ "community": 340,
"norm_label": "modalsize"
},
{
@@ -710,7 +710,7 @@
"source_location": "L7",
"_origin": "ast",
"id": "ui_modal_sizemap",
- "community": 33,
+ "community": 340,
"norm_label": "sizemap"
},
{
@@ -720,7 +720,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "ui_modal_props",
- "community": 33,
+ "community": 340,
"norm_label": "props"
},
{
@@ -730,7 +730,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "ui_modal_modal",
- "community": 33,
+ "community": 340,
"norm_label": "modal()"
},
{
@@ -780,7 +780,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_pageheader",
- "community": 225,
+ "community": 340,
"norm_label": "pageheader.tsx"
},
{
@@ -790,7 +790,7 @@
"source_location": "L5",
"_origin": "ast",
"id": "ui_pageheader_crumb",
- "community": 225,
+ "community": 340,
"norm_label": "crumb"
},
{
@@ -800,7 +800,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "ui_pageheader_props",
- "community": 225,
+ "community": 340,
"norm_label": "props"
},
{
@@ -810,7 +810,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "ui_pageheader_pageheader",
- "community": 225,
+ "community": 340,
"norm_label": "pageheader()"
},
{
@@ -960,7 +960,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_persiandateinput",
- "community": 225,
+ "community": 63,
"norm_label": "persiandateinput.tsx"
},
{
@@ -970,7 +970,7 @@
"source_location": "L5",
"_origin": "ast",
"id": "ui_persiandateinput_props",
- "community": 225,
+ "community": 63,
"norm_label": "props"
},
{
@@ -980,7 +980,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "ui_persiandateinput_persiandateinput",
- "community": 225,
+ "community": 63,
"norm_label": "persiandateinput()"
},
{
@@ -990,7 +990,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_persiandatepicker",
- "community": 225,
+ "community": 63,
"norm_label": "persiandatepicker.tsx"
},
{
@@ -1000,7 +1000,7 @@
"source_location": "L6",
"_origin": "ast",
"id": "ui_persiandatepicker_props",
- "community": 225,
+ "community": 63,
"norm_label": "props"
},
{
@@ -1010,7 +1010,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "ui_persiandatepicker_persiandatepicker",
- "community": 225,
+ "community": 63,
"norm_label": "persiandatepicker()"
},
{
@@ -1150,7 +1150,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_searchableselect",
- "community": 451,
+ "community": 33,
"norm_label": "searchableselect.tsx"
},
{
@@ -1160,7 +1160,7 @@
"source_location": "L5",
"_origin": "ast",
"id": "ui_searchableselect_selectoption",
- "community": 451,
+ "community": 33,
"norm_label": "selectoption"
},
{
@@ -1170,7 +1170,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "ui_searchableselect_props",
- "community": 451,
+ "community": 33,
"norm_label": "props"
},
{
@@ -1180,7 +1180,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "ui_searchableselect_searchableselect",
- "community": 451,
+ "community": 33,
"norm_label": "searchableselect()"
},
{
@@ -1240,7 +1240,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_statusbadge",
- "community": 19,
+ "community": 340,
"norm_label": "statusbadge.tsx"
},
{
@@ -1250,7 +1250,7 @@
"source_location": "L4",
"_origin": "ast",
"id": "ui_statusbadge_badgecolor",
- "community": 19,
+ "community": 340,
"norm_label": "badgecolor"
},
{
@@ -1260,7 +1260,7 @@
"source_location": "L6",
"_origin": "ast",
"id": "ui_statusbadge_appointmentmap",
- "community": 19,
+ "community": 340,
"norm_label": "appointmentmap"
},
{
@@ -1270,7 +1270,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "ui_statusbadge_paymentmap",
- "community": 19,
+ "community": 340,
"norm_label": "paymentmap"
},
{
@@ -1280,7 +1280,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "ui_statusbadge_smsmap",
- "community": 19,
+ "community": 340,
"norm_label": "smsmap"
},
{
@@ -1290,7 +1290,7 @@
"source_location": "L31",
"_origin": "ast",
"id": "ui_statusbadge_settlementmap",
- "community": 19,
+ "community": 340,
"norm_label": "settlementmap"
},
{
@@ -1300,7 +1300,7 @@
"source_location": "L37",
"_origin": "ast",
"id": "ui_statusbadge_props",
- "community": 19,
+ "community": 340,
"norm_label": "props"
},
{
@@ -1310,7 +1310,7 @@
"source_location": "L42",
"_origin": "ast",
"id": "ui_statusbadge_statusbadge",
- "community": 19,
+ "community": 340,
"norm_label": "statusbadge()"
},
{
@@ -1320,7 +1320,7 @@
"source_location": "L71",
"_origin": "ast",
"id": "ui_statusbadge_activebadge",
- "community": 301,
+ "community": 340,
"norm_label": "activebadge()"
},
{
@@ -1330,7 +1330,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "ui_ui_test",
- "community": 301,
+ "community": 340,
"norm_label": "ui.test.tsx"
},
{
@@ -1390,7 +1390,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "hooks_usepaymentconfig_usepaymentconfig",
- "community": 13,
+ "community": 19,
"norm_label": "usepaymentconfig()"
},
{
@@ -1720,7 +1720,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "lib_utils_todate",
- "community": 225,
+ "community": 63,
"norm_label": "todate()"
},
{
@@ -1730,7 +1730,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "lib_utils_formatdate",
- "community": 225,
+ "community": 63,
"norm_label": "formatdate()"
},
{
@@ -1740,7 +1740,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "lib_utils_formatdatetime",
- "community": 225,
+ "community": 63,
"norm_label": "formatdatetime()"
},
{
@@ -1970,7 +1970,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_appointmentdetailpage",
- "community": 225,
+ "community": 63,
"norm_label": "appointmentdetailpage.tsx"
},
{
@@ -1980,7 +1980,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "pages_appointmentdetailpage_all_statuses",
- "community": 225,
+ "community": 63,
"norm_label": "all_statuses"
},
{
@@ -1990,7 +1990,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_appointmentdetailpage_timeof",
- "community": 225,
+ "community": 63,
"norm_label": "timeof()"
},
{
@@ -2000,7 +2000,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "pages_appointmentdetailpage_inforow",
- "community": 225,
+ "community": 63,
"norm_label": "inforow()"
},
{
@@ -2010,7 +2010,7 @@
"source_location": "L41",
"_origin": "ast",
"id": "pages_appointmentdetailpage_appointmentdetailpage",
- "community": 225,
+ "community": 63,
"norm_label": "appointmentdetailpage()"
},
{
@@ -2690,7 +2690,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_claimspage",
- "community": 225,
+ "community": 340,
"norm_label": "claimspage.tsx"
},
{
@@ -2700,7 +2700,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "pages_claimspage_isondaysago",
- "community": 225,
+ "community": 340,
"norm_label": "isondaysago()"
},
{
@@ -2710,7 +2710,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "pages_claimspage_todayiso",
- "community": 225,
+ "community": 340,
"norm_label": "todayiso()"
},
{
@@ -2720,7 +2720,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "pages_claimspage_tounix",
- "community": 225,
+ "community": 340,
"norm_label": "tounix()"
},
{
@@ -2730,7 +2730,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "pages_claimspage_endofdayunix",
- "community": 225,
+ "community": 340,
"norm_label": "endofdayunix()"
},
{
@@ -2740,7 +2740,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "pages_claimspage_claimitem",
- "community": 225,
+ "community": 340,
"norm_label": "claimitem"
},
{
@@ -2750,7 +2750,7 @@
"source_location": "L43",
"_origin": "ast",
"id": "pages_claimspage_claim",
- "community": 225,
+ "community": 340,
"norm_label": "claim"
},
{
@@ -2760,7 +2760,7 @@
"source_location": "L58",
"_origin": "ast",
"id": "pages_claimspage_insuranceoption",
- "community": 225,
+ "community": 340,
"norm_label": "insuranceoption"
},
{
@@ -2770,7 +2770,7 @@
"source_location": "L60",
"_origin": "ast",
"id": "pages_claimspage_debtrow",
- "community": 225,
+ "community": 340,
"norm_label": "debtrow"
},
{
@@ -2780,7 +2780,7 @@
"source_location": "L69",
"_origin": "ast",
"id": "pages_claimspage_status_meta",
- "community": 225,
+ "community": 340,
"norm_label": "status_meta"
},
{
@@ -2790,7 +2790,7 @@
"source_location": "L77",
"_origin": "ast",
"id": "pages_claimspage_kind_label",
- "community": 225,
+ "community": 340,
"norm_label": "kind_label"
},
{
@@ -2800,7 +2800,7 @@
"source_location": "L78",
"_origin": "ast",
"id": "pages_claimspage_status_filters",
- "community": 225,
+ "community": 340,
"norm_label": "status_filters"
},
{
@@ -2810,7 +2810,7 @@
"source_location": "L80",
"_origin": "ast",
"id": "pages_claimspage_claimspage",
- "community": 225,
+ "community": 340,
"norm_label": "claimspage()"
},
{
@@ -3030,7 +3030,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_clinicformpage",
- "community": 63,
+ "community": 13,
"norm_label": "clinicformpage.tsx"
},
{
@@ -3040,7 +3040,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "pages_clinicformpage_schema",
- "community": 63,
+ "community": 13,
"norm_label": "schema"
},
{
@@ -3050,7 +3050,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "pages_clinicformpage_formvalues",
- "community": 63,
+ "community": 13,
"norm_label": "formvalues"
},
{
@@ -3060,7 +3060,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "pages_clinicformpage_cliniccreated",
- "community": 63,
+ "community": 13,
"norm_label": "cliniccreated"
},
{
@@ -3070,7 +3070,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_clinicformpage_clinicformpage",
- "community": 63,
+ "community": 13,
"norm_label": "clinicformpage()"
},
{
@@ -3603,6 +3603,66 @@
"community": 21,
"norm_label": "dashboardpage()"
},
+ {
+ "label": "DoctorClaimsPage.tsx",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage",
+ "community": 340,
+ "norm_label": "doctorclaimspage.tsx"
+ },
+ {
+ "label": "DoctorClaim",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L12",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage_doctorclaim",
+ "community": 340,
+ "norm_label": "doctorclaim"
+ },
+ {
+ "label": "FILTERS",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L23",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage_filters",
+ "community": 340,
+ "norm_label": "filters"
+ },
+ {
+ "label": "STATUS_BADGE",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage_status_badge",
+ "community": 340,
+ "norm_label": "status_badge"
+ },
+ {
+ "label": "METHOD_LABEL",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L36",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage_method_label",
+ "community": 340,
+ "norm_label": "method_label"
+ },
+ {
+ "label": "DoctorClaimsPage()",
+ "file_type": "code",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L42",
+ "_origin": "ast",
+ "id": "pages_doctorclaimspage_doctorclaimspage",
+ "community": 340,
+ "norm_label": "doctorclaimspage()"
+ },
{
"label": "DoctorDetailPage.tsx",
"file_type": "code",
@@ -4077,7 +4137,7 @@
"label": "MapClickHandler()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L463",
+ "source_location": "L467",
"_origin": "ast",
"id": "pages_doctordetailpage_mapclickhandler",
"community": 1,
@@ -4087,7 +4147,7 @@
"label": "MapController()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L468",
+ "source_location": "L472",
"_origin": "ast",
"id": "pages_doctordetailpage_mapcontroller",
"community": 1,
@@ -4097,7 +4157,7 @@
"label": "MapPicker()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L476",
+ "source_location": "L486",
"_origin": "ast",
"id": "pages_doctordetailpage_mappicker",
"community": 1,
@@ -4107,7 +4167,7 @@
"label": "SearchableSelect()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L500",
+ "source_location": "L510",
"_origin": "ast",
"id": "pages_doctordetailpage_searchableselect",
"community": 1,
@@ -4117,7 +4177,7 @@
"label": "HierarchicalSpecialtyPicker()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L588",
+ "source_location": "L598",
"_origin": "ast",
"id": "pages_doctordetailpage_hierarchicalspecialtypicker",
"community": 1,
@@ -4127,7 +4187,7 @@
"label": "ServicesPicker()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L696",
+ "source_location": "L706",
"_origin": "ast",
"id": "pages_doctordetailpage_servicespicker",
"community": 1,
@@ -4137,7 +4197,7 @@
"label": "addrSchema",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L789",
+ "source_location": "L799",
"_origin": "ast",
"id": "pages_doctordetailpage_addrschema",
"community": 1,
@@ -4147,7 +4207,7 @@
"label": "AddrForm",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L805",
+ "source_location": "L815",
"_origin": "ast",
"id": "pages_doctordetailpage_addrform",
"community": 1,
@@ -4157,7 +4217,7 @@
"label": "AddressModal()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L807",
+ "source_location": "L817",
"_origin": "ast",
"id": "pages_doctordetailpage_addressmodal",
"community": 1,
@@ -4167,7 +4227,7 @@
"label": "AddressCard()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L980",
+ "source_location": "L990",
"_origin": "ast",
"id": "pages_doctordetailpage_addresscard",
"community": 1,
@@ -4177,7 +4237,7 @@
"label": "HOUR_VALUES",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1028",
+ "source_location": "L1038",
"_origin": "ast",
"id": "pages_doctordetailpage_hour_values",
"community": 1,
@@ -4187,7 +4247,7 @@
"label": "MINUTE_VALUES",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1029",
+ "source_location": "L1039",
"_origin": "ast",
"id": "pages_doctordetailpage_minute_values",
"community": 1,
@@ -4197,7 +4257,7 @@
"label": "TimeSelect()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1031",
+ "source_location": "L1041",
"_origin": "ast",
"id": "pages_doctordetailpage_timeselect",
"community": 1,
@@ -4207,7 +4267,7 @@
"label": "SlotEditor()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1053",
+ "source_location": "L1063",
"_origin": "ast",
"id": "pages_doctordetailpage_sloteditor",
"community": 1,
@@ -4217,7 +4277,7 @@
"label": "SessionEditor()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1094",
+ "source_location": "L1104",
"_origin": "ast",
"id": "pages_doctordetailpage_sessioneditor",
"community": 676,
@@ -4227,7 +4287,7 @@
"label": "WeeklyScheduleTab()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1220",
+ "source_location": "L1230",
"_origin": "ast",
"id": "pages_doctordetailpage_weeklyscheduletab",
"community": 1,
@@ -4237,7 +4297,7 @@
"label": "DateOverrideModal()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1515",
+ "source_location": "L1525",
"_origin": "ast",
"id": "pages_doctordetailpage_dateoverridemodal",
"community": 1,
@@ -4247,7 +4307,7 @@
"label": "DateOverridesTab()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1655",
+ "source_location": "L1665",
"_origin": "ast",
"id": "pages_doctordetailpage_dateoverridestab",
"community": 1,
@@ -4257,7 +4317,7 @@
"label": "HolidayModal()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1754",
+ "source_location": "L1764",
"_origin": "ast",
"id": "pages_doctordetailpage_holidaymodal",
"community": 1,
@@ -4267,7 +4327,7 @@
"label": "HolidaysTab()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1827",
+ "source_location": "L1837",
"_origin": "ast",
"id": "pages_doctordetailpage_holidaystab",
"community": 1,
@@ -4277,7 +4337,7 @@
"label": "SCHEDULE_TABS",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1935",
+ "source_location": "L1945",
"_origin": "ast",
"id": "pages_doctordetailpage_schedule_tabs",
"community": 1,
@@ -4287,7 +4347,7 @@
"label": "ScheduleSection()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1941",
+ "source_location": "L1951",
"_origin": "ast",
"id": "pages_doctordetailpage_schedulesection",
"community": 1,
@@ -4297,7 +4357,7 @@
"label": "EDIT_DEGREE_OPTIONS",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1976",
+ "source_location": "L1986",
"_origin": "ast",
"id": "pages_doctordetailpage_edit_degree_options",
"community": 1,
@@ -4307,7 +4367,7 @@
"label": "EDIT_GENDER_OPTIONS",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1983",
+ "source_location": "L1993",
"_origin": "ast",
"id": "pages_doctordetailpage_edit_gender_options",
"community": 1,
@@ -4317,7 +4377,7 @@
"label": "EditField()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L1988",
+ "source_location": "L1998",
"_origin": "ast",
"id": "pages_doctordetailpage_editfield",
"community": 1,
@@ -4327,7 +4387,7 @@
"label": "EditSectionHeader()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2003",
+ "source_location": "L2013",
"_origin": "ast",
"id": "pages_doctordetailpage_editsectionheader",
"community": 1,
@@ -4337,7 +4397,7 @@
"label": "EditSelectedEntry",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2019",
+ "source_location": "L2029",
"_origin": "ast",
"id": "pages_doctordetailpage_editselectedentry",
"community": 1,
@@ -4347,7 +4407,7 @@
"label": "EditSpecialtyPicker()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2021",
+ "source_location": "L2031",
"_origin": "ast",
"id": "pages_doctordetailpage_editspecialtypicker",
"community": 1,
@@ -4357,7 +4417,7 @@
"label": "urlOrEmpty",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2191",
+ "source_location": "L2201",
"_origin": "ast",
"id": "pages_doctordetailpage_urlorempty",
"community": 1,
@@ -4367,7 +4427,7 @@
"label": "editSchema",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2193",
+ "source_location": "L2203",
"_origin": "ast",
"id": "pages_doctordetailpage_editschema",
"community": 1,
@@ -4377,7 +4437,7 @@
"label": "EditForm",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2208",
+ "source_location": "L2218",
"_origin": "ast",
"id": "pages_doctordetailpage_editform",
"community": 1,
@@ -4387,7 +4447,7 @@
"label": "InvitationItem",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2212",
+ "source_location": "L2222",
"_origin": "ast",
"id": "pages_doctordetailpage_invitationitem",
"community": 1,
@@ -4397,7 +4457,7 @@
"label": "ClinicInvitationsSection()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2222",
+ "source_location": "L2232",
"_origin": "ast",
"id": "pages_doctordetailpage_clinicinvitationssection",
"community": 1,
@@ -4407,7 +4467,7 @@
"label": "DoctorDetailPage()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorDetailPage.tsx",
- "source_location": "L2322",
+ "source_location": "L2332",
"_origin": "ast",
"id": "pages_doctordetailpage_doctordetailpage",
"community": 21,
@@ -4567,7 +4627,7 @@
"label": "DoctorStats",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L36",
+ "source_location": "L38",
"_origin": "ast",
"id": "pages_doctorspage_doctorstats",
"community": 0,
@@ -4577,7 +4637,7 @@
"label": "SpecialtyOption",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L44",
+ "source_location": "L46",
"_origin": "ast",
"id": "pages_doctorspage_specialtyoption",
"community": 0,
@@ -4587,7 +4647,7 @@
"label": "HUES_LIST",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L52",
+ "source_location": "L54",
"_origin": "ast",
"id": "pages_doctorspage_hues_list",
"community": 0,
@@ -4597,7 +4657,7 @@
"label": "DEGREE_BADGE",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L54",
+ "source_location": "L56",
"_origin": "ast",
"id": "pages_doctorspage_degree_badge",
"community": 0,
@@ -4607,7 +4667,7 @@
"label": "DEGREE_LABEL",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L61",
+ "source_location": "L63",
"_origin": "ast",
"id": "pages_doctorspage_degree_label",
"community": 0,
@@ -4617,7 +4677,7 @@
"label": "DoctorAvatar()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L68",
+ "source_location": "L70",
"_origin": "ast",
"id": "pages_doctorspage_doctoravatar",
"community": 0,
@@ -4627,7 +4687,7 @@
"label": "DoctorsPage()",
"file_type": "code",
"source_file": "assets/admin/pages/DoctorsPage.tsx",
- "source_location": "L92",
+ "source_location": "L94",
"_origin": "ast",
"id": "pages_doctorspage_doctorspage",
"community": 0,
@@ -4820,7 +4880,7 @@
"source_location": "L34",
"_origin": "ast",
"id": "pages_logspage_logspage",
- "community": 225,
+ "community": 301,
"norm_label": "logspage()"
},
{
@@ -4860,7 +4920,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_myfinancialpage",
- "community": 63,
+ "community": 13,
"norm_label": "myfinancialpage.tsx"
},
{
@@ -4870,7 +4930,7 @@
"source_location": "L8",
"_origin": "ast",
"id": "pages_myfinancialpage_monthlyentry",
- "community": 63,
+ "community": 13,
"norm_label": "monthlyentry"
},
{
@@ -4880,7 +4940,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "pages_myfinancialpage_financialsummary",
- "community": 63,
+ "community": 13,
"norm_label": "financialsummary"
},
{
@@ -4890,7 +4950,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "pages_myfinancialpage_kpicard",
- "community": 63,
+ "community": 13,
"norm_label": "kpicard()"
},
{
@@ -4900,7 +4960,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "pages_myfinancialpage_myfinancialpage",
- "community": 63,
+ "community": 13,
"norm_label": "myfinancialpage()"
},
{
@@ -5090,7 +5150,7 @@
"source_location": "L1432",
"_origin": "ast",
"id": "pages_mypatientspage_sessionrow",
- "community": 225,
+ "community": 63,
"norm_label": "sessionrow()"
},
{
@@ -5230,7 +5290,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_newsessionpage",
- "community": 265,
+ "community": 19,
"norm_label": "newsessionpage.tsx"
},
{
@@ -5240,7 +5300,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "pages_newsessionpage_schema",
- "community": 265,
+ "community": 19,
"norm_label": "schema"
},
{
@@ -5250,7 +5310,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "pages_newsessionpage_formdata",
- "community": 265,
+ "community": 19,
"norm_label": "formdata"
},
{
@@ -5260,7 +5320,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "pages_newsessionpage_contract",
- "community": 265,
+ "community": 19,
"norm_label": "contract"
},
{
@@ -5270,7 +5330,7 @@
"source_location": "L27",
"_origin": "ast",
"id": "pages_newsessionpage_coveragerow",
- "community": 265,
+ "community": 19,
"norm_label": "coveragerow"
},
{
@@ -5280,7 +5340,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "pages_newsessionpage_payment_labels",
- "community": 265,
+ "community": 19,
"norm_label": "payment_labels"
},
{
@@ -5290,7 +5350,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "pages_newsessionpage_rule",
- "community": 265,
+ "community": 19,
"norm_label": "rule"
},
{
@@ -5300,7 +5360,7 @@
"source_location": "L38",
"_origin": "ast",
"id": "pages_newsessionpage_patientshareof",
- "community": 265,
+ "community": 19,
"norm_label": "patientshareof()"
},
{
@@ -5310,7 +5370,7 @@
"source_location": "L56",
"_origin": "ast",
"id": "pages_newsessionpage_sectiontitle",
- "community": 265,
+ "community": 19,
"norm_label": "sectiontitle"
},
{
@@ -5320,7 +5380,7 @@
"source_location": "L57",
"_origin": "ast",
"id": "pages_newsessionpage_fieldlabel",
- "community": 265,
+ "community": 19,
"norm_label": "fieldlabel"
},
{
@@ -5330,7 +5390,7 @@
"source_location": "L59",
"_origin": "ast",
"id": "pages_newsessionpage_newsessionpage",
- "community": 265,
+ "community": 19,
"norm_label": "newsessionpage()"
},
{
@@ -5340,7 +5400,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_paymentdetailpage",
- "community": 225,
+ "community": 63,
"norm_label": "paymentdetailpage.tsx"
},
{
@@ -5350,7 +5410,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "pages_paymentdetailpage_payment_type_labels",
- "community": 225,
+ "community": 63,
"norm_label": "payment_type_labels"
},
{
@@ -5360,7 +5420,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "pages_paymentdetailpage_inforow",
- "community": 225,
+ "community": 63,
"norm_label": "inforow()"
},
{
@@ -5370,7 +5430,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "pages_paymentdetailpage_paymentdetailpage",
- "community": 225,
+ "community": 63,
"norm_label": "paymentdetailpage()"
},
{
@@ -5380,7 +5440,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_paymentspage",
- "community": 19,
+ "community": 63,
"norm_label": "paymentspage.tsx"
},
{
@@ -5390,7 +5450,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "pages_paymentspage_status_filters",
- "community": 19,
+ "community": 63,
"norm_label": "status_filters"
},
{
@@ -5400,7 +5460,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_paymentspage_paymentspage",
- "community": 19,
+ "community": 63,
"norm_label": "paymentspage()"
},
{
@@ -5510,7 +5570,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_representationdetailpage",
- "community": 19,
+ "community": 340,
"norm_label": "representationdetailpage.tsx"
},
{
@@ -5520,7 +5580,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "pages_representationdetailpage_detailrow",
- "community": 19,
+ "community": 340,
"norm_label": "detailrow()"
},
{
@@ -5530,7 +5590,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_representationdetailpage_representationdetailpage",
- "community": 19,
+ "community": 340,
"norm_label": "representationdetailpage()"
},
{
@@ -5750,7 +5810,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_representationspage",
- "community": 301,
+ "community": 340,
"norm_label": "representationspage.tsx"
},
{
@@ -5760,7 +5820,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "pages_representationspage_schema",
- "community": 301,
+ "community": 340,
"norm_label": "schema"
},
{
@@ -5770,7 +5830,7 @@
"source_location": "L30",
"_origin": "ast",
"id": "pages_representationspage_formdata",
- "community": 301,
+ "community": 340,
"norm_label": "formdata"
},
{
@@ -5780,7 +5840,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "pages_representationspage_representationspage",
- "community": 301,
+ "community": 340,
"norm_label": "representationspage()"
},
{
@@ -6020,7 +6080,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_settlementdetailpage",
- "community": 0,
+ "community": 340,
"norm_label": "settlementdetailpage.tsx"
},
{
@@ -6030,7 +6090,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "pages_settlementdetailpage_settlementdetail",
- "community": 0,
+ "community": 340,
"norm_label": "settlementdetail"
},
{
@@ -6040,7 +6100,7 @@
"source_location": "L30",
"_origin": "ast",
"id": "pages_settlementdetailpage_row",
- "community": 0,
+ "community": 340,
"norm_label": "row()"
},
{
@@ -6050,7 +6110,7 @@
"source_location": "L39",
"_origin": "ast",
"id": "pages_settlementdetailpage_settlementdetailpage",
- "community": 0,
+ "community": 63,
"norm_label": "settlementdetailpage()"
},
{
@@ -6090,7 +6150,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_smspage",
- "community": 19,
+ "community": 528,
"norm_label": "smspage.tsx"
},
{
@@ -6100,7 +6160,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "pages_smspage_templateschema",
- "community": 19,
+ "community": 528,
"norm_label": "templateschema"
},
{
@@ -6110,7 +6170,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "pages_smspage_templateformdata",
- "community": 19,
+ "community": 528,
"norm_label": "templateformdata"
},
{
@@ -6120,7 +6180,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_smspage_tab",
- "community": 19,
+ "community": 528,
"norm_label": "tab"
},
{
@@ -6130,7 +6190,7 @@
"source_location": "L27",
"_origin": "ast",
"id": "pages_smspage_status_log_meta",
- "community": 19,
+ "community": 528,
"norm_label": "status_log_meta"
},
{
@@ -6140,7 +6200,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "pages_smspage_tag_labels",
- "community": 19,
+ "community": 528,
"norm_label": "tag_labels"
},
{
@@ -6150,7 +6210,7 @@
"source_location": "L43",
"_origin": "ast",
"id": "pages_smspage_tag_filter_options",
- "community": 19,
+ "community": 528,
"norm_label": "tag_filter_options"
},
{
@@ -6160,7 +6220,7 @@
"source_location": "L50",
"_origin": "ast",
"id": "pages_smspage_buildkavenegarpattern",
- "community": 19,
+ "community": 528,
"norm_label": "buildkavenegarpattern()"
},
{
@@ -6170,7 +6230,7 @@
"source_location": "L56",
"_origin": "ast",
"id": "pages_smspage_kavenegarguide",
- "community": 19,
+ "community": 528,
"norm_label": "kavenegarguide()"
},
{
@@ -6180,7 +6240,7 @@
"source_location": "L117",
"_origin": "ast",
"id": "pages_smspage_smspage",
- "community": 225,
+ "community": 528,
"norm_label": "smspage()"
},
{
@@ -6190,7 +6250,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_smswalletpage",
- "community": 451,
+ "community": 19,
"norm_label": "smswalletpage.tsx"
},
{
@@ -6200,7 +6260,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "pages_smswalletpage_chargeschema",
- "community": 451,
+ "community": 19,
"norm_label": "chargeschema"
},
{
@@ -6210,7 +6270,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "pages_smswalletpage_chargeform",
- "community": 451,
+ "community": 19,
"norm_label": "chargeform"
},
{
@@ -6220,7 +6280,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "pages_smswalletpage_empty_logs",
- "community": 451,
+ "community": 19,
"norm_label": "empty_logs"
},
{
@@ -6230,7 +6290,7 @@
"source_location": "L30",
"_origin": "ast",
"id": "pages_smswalletpage_reminder_hour_options",
- "community": 451,
+ "community": 19,
"norm_label": "reminder_hour_options"
},
{
@@ -6240,7 +6300,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "pages_smswalletpage_post_visit_vars",
- "community": 451,
+ "community": 19,
"norm_label": "post_visit_vars"
},
{
@@ -6250,7 +6310,7 @@
"source_location": "L39",
"_origin": "ast",
"id": "pages_smswalletpage_smswalletpageinner",
- "community": 63,
+ "community": 19,
"norm_label": "smswalletpageinner()"
},
{
@@ -6260,7 +6320,7 @@
"source_location": "L566",
"_origin": "ast",
"id": "pages_smswalletpage_smswalletpage",
- "community": 451,
+ "community": 19,
"norm_label": "smswalletpage()"
},
{
@@ -6270,7 +6330,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_staffpage",
- "community": 33,
+ "community": 340,
"norm_label": "staffpage.tsx"
},
{
@@ -6280,7 +6340,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "pages_staffpage_schema",
- "community": 33,
+ "community": 340,
"norm_label": "schema"
},
{
@@ -6290,7 +6350,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "pages_staffpage_staffformdata",
- "community": 33,
+ "community": 340,
"norm_label": "staffformdata"
},
{
@@ -6300,7 +6360,7 @@
"source_location": "L27",
"_origin": "ast",
"id": "pages_staffpage_empty",
- "community": 33,
+ "community": 340,
"norm_label": "empty"
},
{
@@ -6310,7 +6370,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "pages_staffpage_staffpage",
- "community": 33,
+ "community": 340,
"norm_label": "staffpage()"
},
{
@@ -6320,7 +6380,7 @@
"source_location": "L246",
"_origin": "ast",
"id": "pages_staffpage_staffformfields",
- "community": 33,
+ "community": 340,
"norm_label": "staffformfields()"
},
{
@@ -6330,7 +6390,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_subscriptionpage",
- "community": 13,
+ "community": 19,
"norm_label": "subscriptionpage.tsx"
},
{
@@ -6340,7 +6400,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "pages_subscriptionpage_plan_feature_labels",
- "community": 13,
+ "community": 19,
"norm_label": "plan_feature_labels"
},
{
@@ -6350,7 +6410,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "pages_subscriptionpage_plan_meta",
- "community": 13,
+ "community": 19,
"norm_label": "plan_meta"
},
{
@@ -6360,7 +6420,7 @@
"source_location": "L47",
"_origin": "ast",
"id": "pages_subscriptionpage_subscriptionpage",
- "community": 13,
+ "community": 19,
"norm_label": "subscriptionpage()"
},
{
@@ -6370,7 +6430,7 @@
"source_location": "L396",
"_origin": "ast",
"id": "pages_subscriptionpage_plancard",
- "community": 13,
+ "community": 19,
"norm_label": "plancard()"
},
{
@@ -6540,7 +6600,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "pages_userspage",
- "community": 451,
+ "community": 301,
"norm_label": "userspage.tsx"
},
{
@@ -6550,7 +6610,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "pages_userspage_adminuser",
- "community": 451,
+ "community": 301,
"norm_label": "adminuser"
},
{
@@ -6560,7 +6620,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "pages_userspage_userstats",
- "community": 451,
+ "community": 301,
"norm_label": "userstats"
},
{
@@ -6570,7 +6630,7 @@
"source_location": "L44",
"_origin": "ast",
"id": "pages_userspage_hues_list",
- "community": 451,
+ "community": 301,
"norm_label": "hues_list"
},
{
@@ -6580,7 +6640,7 @@
"source_location": "L46",
"_origin": "ast",
"id": "pages_userspage_role_meta",
- "community": 451,
+ "community": 301,
"norm_label": "role_meta"
},
{
@@ -6590,7 +6650,7 @@
"source_location": "L54",
"_origin": "ast",
"id": "pages_userspage_getprimaryrole",
- "community": 451,
+ "community": 301,
"norm_label": "getprimaryrole()"
},
{
@@ -6600,7 +6660,7 @@
"source_location": "L62",
"_origin": "ast",
"id": "pages_userspage_useravatar",
- "community": 451,
+ "community": 301,
"norm_label": "useravatar()"
},
{
@@ -6610,7 +6670,7 @@
"source_location": "L77",
"_origin": "ast",
"id": "pages_userspage_rolebadge",
- "community": 451,
+ "community": 301,
"norm_label": "rolebadge()"
},
{
@@ -6620,7 +6680,7 @@
"source_location": "L88",
"_origin": "ast",
"id": "pages_userspage_activebadge",
- "community": 451,
+ "community": 301,
"norm_label": "activebadge()"
},
{
@@ -6630,7 +6690,7 @@
"source_location": "L99",
"_origin": "ast",
"id": "pages_userspage_changerolemodal",
- "community": 451,
+ "community": 301,
"norm_label": "changerolemodal()"
},
{
@@ -6640,7 +6700,7 @@
"source_location": "L151",
"_origin": "ast",
"id": "pages_userspage_role_tabs",
- "community": 451,
+ "community": 301,
"norm_label": "role_tabs"
},
{
@@ -6650,7 +6710,7 @@
"source_location": "L162",
"_origin": "ast",
"id": "pages_userspage_userspage",
- "community": 451,
+ "community": 301,
"norm_label": "userspage()"
},
{
@@ -6950,7 +7010,7 @@
"source_location": "L82",
"_origin": "ast",
"id": "types_index_appointmentstatus",
- "community": 19,
+ "community": 340,
"norm_label": "appointmentstatus"
},
{
@@ -6970,7 +7030,7 @@
"source_location": "L107",
"_origin": "ast",
"id": "types_index_paymentstatus",
- "community": 19,
+ "community": 340,
"norm_label": "paymentstatus"
},
{
@@ -6990,7 +7050,7 @@
"source_location": "L115",
"_origin": "ast",
"id": "types_index_payment",
- "community": 19,
+ "community": 63,
"norm_label": "payment"
},
{
@@ -7000,7 +7060,7 @@
"source_location": "L132",
"_origin": "ast",
"id": "types_index_settlementstatus",
- "community": 19,
+ "community": 340,
"norm_label": "settlementstatus"
},
{
@@ -7020,7 +7080,7 @@
"source_location": "L146",
"_origin": "ast",
"id": "types_index_representation",
- "community": 19,
+ "community": 340,
"norm_label": "representation"
},
{
@@ -7050,7 +7110,7 @@
"source_location": "L188",
"_origin": "ast",
"id": "types_index_smstemplatestatus",
- "community": 19,
+ "community": 340,
"norm_label": "smstemplatestatus"
},
{
@@ -7060,7 +7120,7 @@
"source_location": "L190",
"_origin": "ast",
"id": "types_index_smstemplate",
- "community": 19,
+ "community": 528,
"norm_label": "smstemplate"
},
{
@@ -7070,7 +7130,7 @@
"source_location": "L200",
"_origin": "ast",
"id": "types_index_smslog",
- "community": 19,
+ "community": 528,
"norm_label": "smslog"
},
{
@@ -7090,7 +7150,7 @@
"source_location": "L222",
"_origin": "ast",
"id": "types_index_smsmessagetext",
- "community": 19,
+ "community": 528,
"norm_label": "smsmessagetext"
},
{
@@ -7110,7 +7170,7 @@
"source_location": "L240",
"_origin": "ast",
"id": "types_index_city",
- "community": 19,
+ "community": 340,
"norm_label": "city"
},
{
@@ -7200,7 +7260,7 @@
"source_location": "L355",
"_origin": "ast",
"id": "types_index_clinicstaff",
- "community": 33,
+ "community": 340,
"norm_label": "clinicstaff"
},
{
@@ -7210,7 +7270,7 @@
"source_location": "L366",
"_origin": "ast",
"id": "types_index_subscriptionplan",
- "community": 13,
+ "community": 19,
"norm_label": "subscriptionplan"
},
{
@@ -7220,7 +7280,7 @@
"source_location": "L376",
"_origin": "ast",
"id": "types_index_subscriptionperiod",
- "community": 13,
+ "community": 19,
"norm_label": "subscriptionperiod"
},
{
@@ -7230,7 +7290,7 @@
"source_location": "L384",
"_origin": "ast",
"id": "types_index_mysubscriptiondata",
- "community": 13,
+ "community": 19,
"norm_label": "mysubscriptiondata"
},
{
@@ -7250,7 +7310,7 @@
"source_location": "L418",
"_origin": "ast",
"id": "types_index_servicesection",
- "community": 265,
+ "community": 19,
"norm_label": "servicesection"
},
{
@@ -7260,7 +7320,7 @@
"source_location": "L424",
"_origin": "ast",
"id": "types_index_serviceitem",
- "community": 33,
+ "community": 19,
"norm_label": "serviceitem"
},
{
@@ -7270,7 +7330,7 @@
"source_location": "L434",
"_origin": "ast",
"id": "types_index_smswalletbalance",
- "community": 451,
+ "community": 19,
"norm_label": "smswalletbalance"
},
{
@@ -7280,7 +7340,7 @@
"source_location": "L440",
"_origin": "ast",
"id": "types_index_smswalletlog",
- "community": 451,
+ "community": 19,
"norm_label": "smswalletlog"
},
{
@@ -7290,7 +7350,7 @@
"source_location": "L448",
"_origin": "ast",
"id": "types_index_smssettings",
- "community": 451,
+ "community": 19,
"norm_label": "smssettings"
},
{
@@ -7310,7 +7370,7 @@
"source_location": "L474",
"_origin": "ast",
"id": "types_index_patientrecord",
- "community": 265,
+ "community": 19,
"norm_label": "patientrecord"
},
{
@@ -8170,7 +8230,7 @@
"source_location": "L89",
"_origin": "ast",
"id": "composer_extra",
- "community": 747,
+ "community": 163,
"norm_label": "extra"
},
{
@@ -8180,7 +8240,7 @@
"source_location": "L90",
"_origin": "ast",
"id": "composer_extra_symfony",
- "community": 747,
+ "community": 163,
"norm_label": "symfony"
},
{
@@ -8190,7 +8250,7 @@
"source_location": "L91",
"_origin": "ast",
"id": "composer_symfony_allow_contrib",
- "community": 747,
+ "community": 163,
"norm_label": "allow-contrib"
},
{
@@ -8200,7 +8260,7 @@
"source_location": "L92",
"_origin": "ast",
"id": "composer_symfony_require",
- "community": 747,
+ "community": 163,
"norm_label": "require"
},
{
@@ -9980,7 +10040,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "migrations_version20260610175105",
- "community": 422,
+ "community": 399,
"norm_label": "version20260610175105.php"
},
{
@@ -9990,7 +10050,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "migrations_version20260610175105_version20260610175105",
- "community": 422,
+ "community": 399,
"norm_label": "version20260610175105"
},
{
@@ -10000,7 +10060,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "migrations_version20260610175105_version20260610175105_getdescription",
- "community": 422,
+ "community": 399,
"norm_label": ".getdescription()"
},
{
@@ -10010,7 +10070,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260610175105_version20260610175105_up",
- "community": 422,
+ "community": 399,
"norm_label": ".up()"
},
{
@@ -10020,7 +10080,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260610175105_php_schema",
- "community": 422,
+ "community": 399,
"norm_label": "schema"
},
{
@@ -10030,7 +10090,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "migrations_version20260610175105_version20260610175105_down",
- "community": 422,
+ "community": 399,
"norm_label": ".down()"
},
{
@@ -10100,7 +10160,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "migrations_version20260611075829",
- "community": 606,
+ "community": 693,
"norm_label": "version20260611075829.php"
},
{
@@ -10110,7 +10170,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "migrations_version20260611075829_version20260611075829",
- "community": 606,
+ "community": 693,
"norm_label": "version20260611075829"
},
{
@@ -10120,7 +10180,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "migrations_version20260611075829_version20260611075829_getdescription",
- "community": 606,
+ "community": 693,
"norm_label": ".getdescription()"
},
{
@@ -10130,7 +10190,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260611075829_version20260611075829_up",
- "community": 606,
+ "community": 693,
"norm_label": ".up()"
},
{
@@ -10140,7 +10200,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260611075829_php_schema",
- "community": 606,
+ "community": 693,
"norm_label": "schema"
},
{
@@ -10150,7 +10210,7 @@
"source_location": "L50",
"_origin": "ast",
"id": "migrations_version20260611075829_version20260611075829_down",
- "community": 606,
+ "community": 693,
"norm_label": ".down()"
},
{
@@ -12260,7 +12320,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "migrations_version20260628133044",
- "community": 399,
+ "community": 746,
"norm_label": "version20260628133044.php"
},
{
@@ -12270,7 +12330,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "migrations_version20260628133044_version20260628133044",
- "community": 399,
+ "community": 746,
"norm_label": "version20260628133044"
},
{
@@ -12280,7 +12340,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "migrations_version20260628133044_version20260628133044_getdescription",
- "community": 399,
+ "community": 746,
"norm_label": ".getdescription()"
},
{
@@ -12290,7 +12350,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260628133044_version20260628133044_up",
- "community": 399,
+ "community": 746,
"norm_label": ".up()"
},
{
@@ -12300,7 +12360,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "migrations_version20260628133044_php_schema",
- "community": 399,
+ "community": 746,
"norm_label": "schema"
},
{
@@ -12310,7 +12370,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "migrations_version20260628133044_version20260628133044_down",
- "community": 399,
+ "community": 746,
"norm_label": ".down()"
},
{
@@ -13333,6 +13393,126 @@
"community": 542,
"norm_label": ".down()"
},
+ {
+ "label": "Version20260711150000.php",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000",
+ "community": 747,
+ "norm_label": "version20260711150000.php"
+ },
+ {
+ "label": "Version20260711150000",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L20",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000_version20260711150000",
+ "community": 747,
+ "norm_label": "version20260711150000"
+ },
+ {
+ "label": ".getDescription()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000_version20260711150000_getdescription",
+ "community": 747,
+ "norm_label": ".getdescription()"
+ },
+ {
+ "label": ".up()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L27",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000_version20260711150000_up",
+ "community": 747,
+ "norm_label": ".up()"
+ },
+ {
+ "label": "Schema",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L27",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000_php_schema",
+ "community": 747,
+ "norm_label": "schema"
+ },
+ {
+ "label": ".down()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L44",
+ "_origin": "ast",
+ "id": "migrations_version20260711150000_version20260711150000_down",
+ "community": 747,
+ "norm_label": ".down()"
+ },
+ {
+ "label": "Version20260711151000.php",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000",
+ "community": 749,
+ "norm_label": "version20260711151000.php"
+ },
+ {
+ "label": "Version20260711151000",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L14",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000_version20260711151000",
+ "community": 749,
+ "norm_label": "version20260711151000"
+ },
+ {
+ "label": ".getDescription()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L16",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000_version20260711151000_getdescription",
+ "community": 749,
+ "norm_label": ".getdescription()"
+ },
+ {
+ "label": ".up()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L21",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000_version20260711151000_up",
+ "community": 749,
+ "norm_label": ".up()"
+ },
+ {
+ "label": "Schema",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L21",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000_php_schema",
+ "community": 749,
+ "norm_label": "schema"
+ },
+ {
+ "label": ".down()",
+ "file_type": "code",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L46",
+ "_origin": "ast",
+ "id": "migrations_version20260711151000_version20260711151000_down",
+ "community": 749,
+ "norm_label": ".down()"
+ },
{
"label": "package.json",
"file_type": "code",
@@ -14167,7 +14347,7 @@
"label": "AdminApiController",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L35",
+ "source_location": "L33",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller",
"community": 20,
@@ -14177,7 +14357,7 @@
"label": ".__construct()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L39",
+ "source_location": "L37",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_construct",
"community": 20,
@@ -14187,7 +14367,7 @@
"label": ".userStats()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L49",
+ "source_location": "L47",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_userstats",
"community": 20,
@@ -14197,7 +14377,7 @@
"label": "JsonResponse",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L49",
+ "source_location": "L47",
"_origin": "ast",
"id": "src_admin_controller_adminapicontroller_php_jsonresponse",
"community": 20,
@@ -14207,7 +14387,7 @@
"label": ".toggleUserStatus()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L109",
+ "source_location": "L107",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_toggleuserstatus",
"community": 20,
@@ -14217,7 +14397,7 @@
"label": ".updateUserRole()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L121",
+ "source_location": "L119",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_updateuserrole",
"community": 20,
@@ -14227,7 +14407,7 @@
"label": "Request",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L121",
+ "source_location": "L119",
"_origin": "ast",
"id": "src_admin_controller_adminapicontroller_php_request",
"community": 20,
@@ -14237,7 +14417,7 @@
"label": ".userDetail()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L148",
+ "source_location": "L146",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_userdetail",
"community": 20,
@@ -14247,7 +14427,7 @@
"label": ".updateUser()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L168",
+ "source_location": "L166",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_updateuser",
"community": 20,
@@ -14257,7 +14437,7 @@
"label": ".deleteUser()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L196",
+ "source_location": "L194",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_deleteuser",
"community": 20,
@@ -14267,7 +14447,7 @@
"label": ".users()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L208",
+ "source_location": "L206",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_users",
"community": 20,
@@ -14277,7 +14457,7 @@
"label": ".doctorStats()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L265",
+ "source_location": "L263",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_doctorstats",
"community": 20,
@@ -14287,7 +14467,7 @@
"label": ".toggleDoctorStatus()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L290",
+ "source_location": "L288",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_toggledoctorstatus",
"community": 20,
@@ -14297,7 +14477,7 @@
"label": ".doctorsList()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L302",
+ "source_location": "L300",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_doctorslist",
"community": 20,
@@ -14307,57 +14487,17 @@
"label": ".createDoctor()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L392",
+ "source_location": "L398",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_createdoctor",
"community": 20,
"norm_label": ".createdoctor()"
},
- {
- "label": ".importDoctor()",
- "file_type": "code",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L455",
- "_origin": "ast",
- "id": "controller_adminapicontroller_adminapicontroller_importdoctor",
- "community": 20,
- "norm_label": ".importdoctor()"
- },
- {
- "label": "User",
- "file_type": "code",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L455",
- "_origin": "ast",
- "id": "src_admin_controller_adminapicontroller_php_user",
- "community": 20,
- "norm_label": "user"
- },
- {
- "label": ".syncRefCollection()",
- "file_type": "code",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L556",
- "_origin": "ast",
- "id": "controller_adminapicontroller_adminapicontroller_syncrefcollection",
- "community": 20,
- "norm_label": ".syncrefcollection()"
- },
- {
- "label": "Collection",
- "file_type": "code",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L556",
- "_origin": "ast",
- "id": "src_admin_controller_adminapicontroller_php_collection",
- "community": 20,
- "norm_label": "collection"
- },
{
"label": ".clinicsList()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L572",
+ "source_location": "L455",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_clinicslist",
"community": 20,
@@ -14367,7 +14507,7 @@
"label": ".createClinic()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L629",
+ "source_location": "L512",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_createclinic",
"community": 20,
@@ -14377,7 +14517,7 @@
"label": ".toggleClinicStatus()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L670",
+ "source_location": "L553",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_toggleclinicstatus",
"community": 20,
@@ -14387,7 +14527,7 @@
"label": ".deleteClinic()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L682",
+ "source_location": "L565",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_deleteclinic",
"community": 20,
@@ -14397,7 +14537,7 @@
"label": ".appointmentsTodayStats()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L697",
+ "source_location": "L580",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_appointmentstodaystats",
"community": 20,
@@ -14407,7 +14547,7 @@
"label": ".appointments()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L764",
+ "source_location": "L647",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_appointments",
"community": 20,
@@ -14417,7 +14557,7 @@
"label": ".createAppointment()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L877",
+ "source_location": "L760",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_createappointment",
"community": 20,
@@ -14427,7 +14567,7 @@
"label": ".payments()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L961",
+ "source_location": "L844",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_payments",
"community": 20,
@@ -14437,7 +14577,7 @@
"label": ".paymentDetail()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1005",
+ "source_location": "L888",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_paymentdetail",
"community": 20,
@@ -14447,7 +14587,7 @@
"label": ".refundPayment()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1055",
+ "source_location": "L938",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_refundpayment",
"community": 20,
@@ -14457,7 +14597,7 @@
"label": ".reversePayment()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1074",
+ "source_location": "L957",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_reversepayment",
"community": 20,
@@ -14467,7 +14607,7 @@
"label": ".representations()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1090",
+ "source_location": "L973",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_representations",
"community": 20,
@@ -14477,7 +14617,7 @@
"label": ".financialBreakdowns()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1203",
+ "source_location": "L1086",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_financialbreakdowns",
"community": 20,
@@ -14487,7 +14627,7 @@
"label": ".financialSummary()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1279",
+ "source_location": "L1162",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_financialsummary",
"community": 20,
@@ -14497,7 +14637,7 @@
"label": ".secretaries()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1310",
+ "source_location": "L1193",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_secretaries",
"community": 20,
@@ -14507,7 +14647,7 @@
"label": ".rates()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1394",
+ "source_location": "L1277",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_rates",
"community": 20,
@@ -14517,7 +14657,7 @@
"label": ".comments()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1481",
+ "source_location": "L1364",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_comments",
"community": 20,
@@ -14527,7 +14667,7 @@
"label": ".smsLogs()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1570",
+ "source_location": "L1453",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_smslogs",
"community": 20,
@@ -14537,7 +14677,7 @@
"label": ".settlements()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1646",
+ "source_location": "L1529",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_settlements",
"community": 20,
@@ -14547,7 +14687,7 @@
"label": ".settlementDetail()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1729",
+ "source_location": "L1612",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_settlementdetail",
"community": 20,
@@ -14557,7 +14697,7 @@
"label": ".smsSampleTemplates()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1777",
+ "source_location": "L1660",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_smssampletemplates",
"community": 20,
@@ -14567,7 +14707,7 @@
"label": ".dashboardRecent()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1852",
+ "source_location": "L1735",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_dashboardrecent",
"community": 20,
@@ -14577,7 +14717,7 @@
"label": ".dashboardStats()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1970",
+ "source_location": "L1853",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_dashboardstats",
"community": 20,
@@ -14587,7 +14727,7 @@
"label": ".dashboardCharts()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2098",
+ "source_location": "L1981",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_dashboardcharts",
"community": 20,
@@ -14597,7 +14737,7 @@
"label": ".logs()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2170",
+ "source_location": "L2053",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_logs",
"community": 20,
@@ -14607,7 +14747,7 @@
"label": ".exportLogs()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2227",
+ "source_location": "L2110",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_exportlogs",
"community": 20,
@@ -14617,7 +14757,7 @@
"label": "StreamedResponse",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2227",
+ "source_location": "L2110",
"_origin": "ast",
"id": "streamedresponse",
"community": 20,
@@ -14627,7 +14767,7 @@
"label": ".clearLogs()",
"file_type": "code",
"source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2293",
+ "source_location": "L2176",
"_origin": "ast",
"id": "controller_adminapicontroller_adminapicontroller_clearlogs",
"community": 20,
@@ -14690,7 +14830,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_cancelexpiredappointmentscommand",
- "community": 205,
+ "community": 435,
"norm_label": "cancelexpiredappointmentscommand.php"
},
{
@@ -14700,7 +14840,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand",
- "community": 205,
+ "community": 435,
"norm_label": "cancelexpiredappointmentscommand"
},
{
@@ -14710,7 +14850,7 @@
"source_location": "",
"_origin": "ast",
"id": "command",
- "community": 205,
+ "community": 435,
"norm_label": "command"
},
{
@@ -14720,7 +14860,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_construct",
- "community": 205,
+ "community": 435,
"norm_label": ".__construct()"
},
{
@@ -14730,7 +14870,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute",
- "community": 205,
+ "community": 435,
"norm_label": ".execute()"
},
{
@@ -14740,7 +14880,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "src_appointment_command_cancelexpiredappointmentscommand_php_inputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "inputinterface"
},
{
@@ -14750,7 +14890,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "src_appointment_command_cancelexpiredappointmentscommand_php_outputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "outputinterface"
},
{
@@ -16420,7 +16560,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_dateoverriderepository",
- "community": 14,
+ "community": 371,
"norm_label": "dateoverriderepository.php"
},
{
@@ -16430,7 +16570,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository",
- "community": 14,
+ "community": 371,
"norm_label": "dateoverriderepository"
},
{
@@ -16440,7 +16580,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository_construct",
- "community": 14,
+ "community": 371,
"norm_label": ".__construct()"
},
{
@@ -16450,7 +16590,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "src_appointment_repository_dateoverriderepository_php_managerregistry",
- "community": 14,
+ "community": 371,
"norm_label": "managerregistry"
},
{
@@ -16460,7 +16600,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository_findbyuuid",
- "community": 14,
+ "community": 371,
"norm_label": ".findbyuuid()"
},
{
@@ -16470,7 +16610,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "dateoverride",
- "community": 14,
+ "community": 371,
"norm_label": "dateoverride"
},
{
@@ -16480,7 +16620,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository_findbydoctor",
- "community": 14,
+ "community": 371,
"norm_label": ".findbydoctor()"
},
{
@@ -16490,7 +16630,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "src_appointment_repository_dateoverriderepository_php_doctor",
- "community": 14,
+ "community": 371,
"norm_label": "doctor"
},
{
@@ -16500,7 +16640,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository_save",
- "community": 14,
+ "community": 371,
"norm_label": ".save()"
},
{
@@ -16510,7 +16650,7 @@
"source_location": "L34",
"_origin": "ast",
"id": "repository_dateoverriderepository_dateoverriderepository_remove",
- "community": 14,
+ "community": 371,
"norm_label": ".remove()"
},
{
@@ -16770,7 +16910,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "service_appointmentexpiryservice",
- "community": 66,
+ "community": 713,
"norm_label": "appointmentexpiryservice.php"
},
{
@@ -16780,7 +16920,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "service_appointmentexpiryservice_appointmentexpiryservice",
- "community": 66,
+ "community": 713,
"norm_label": "appointmentexpiryservice"
},
{
@@ -16790,7 +16930,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "service_appointmentexpiryservice_appointmentexpiryservice_construct",
- "community": 66,
+ "community": 713,
"norm_label": ".__construct()"
},
{
@@ -16800,7 +16940,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "service_appointmentexpiryservice_appointmentexpiryservice_expirestale",
- "community": 66,
+ "community": 713,
"norm_label": ".expirestale()"
},
{
@@ -16960,7 +17100,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_createadmincommand",
- "community": 205,
+ "community": 750,
"norm_label": "createadmincommand.php"
},
{
@@ -16970,7 +17110,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "command_createadmincommand_createadmincommand",
- "community": 205,
+ "community": 750,
"norm_label": "createadmincommand"
},
{
@@ -16980,7 +17120,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "command_createadmincommand_createadmincommand_construct",
- "community": 205,
+ "community": 750,
"norm_label": ".__construct()"
},
{
@@ -16990,7 +17130,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "command_createadmincommand_createadmincommand_configure",
- "community": 205,
+ "community": 750,
"norm_label": ".configure()"
},
{
@@ -17000,7 +17140,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "command_createadmincommand_createadmincommand_execute",
- "community": 205,
+ "community": 750,
"norm_label": ".execute()"
},
{
@@ -17010,7 +17150,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_auth_command_createadmincommand_php_inputinterface",
- "community": 205,
+ "community": 750,
"norm_label": "inputinterface"
},
{
@@ -17020,7 +17160,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_auth_command_createadmincommand_php_outputinterface",
- "community": 205,
+ "community": 750,
"norm_label": "outputinterface"
},
{
@@ -17030,7 +17170,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_systemownercommand",
- "community": 205,
+ "community": 757,
"norm_label": "systemownercommand.php"
},
{
@@ -17040,7 +17180,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "command_systemownercommand_systemownercommand",
- "community": 205,
+ "community": 757,
"norm_label": "systemownercommand"
},
{
@@ -17050,7 +17190,7 @@
"source_location": "L31",
"_origin": "ast",
"id": "command_systemownercommand_systemownercommand_construct",
- "community": 205,
+ "community": 757,
"norm_label": ".__construct()"
},
{
@@ -17060,7 +17200,7 @@
"source_location": "L38",
"_origin": "ast",
"id": "command_systemownercommand_systemownercommand_configure",
- "community": 205,
+ "community": 757,
"norm_label": ".configure()"
},
{
@@ -17070,7 +17210,7 @@
"source_location": "L47",
"_origin": "ast",
"id": "command_systemownercommand_systemownercommand_execute",
- "community": 205,
+ "community": 757,
"norm_label": ".execute()"
},
{
@@ -17080,7 +17220,7 @@
"source_location": "L47",
"_origin": "ast",
"id": "src_auth_command_systemownercommand_php_inputinterface",
- "community": 205,
+ "community": 757,
"norm_label": "inputinterface"
},
{
@@ -17090,7 +17230,7 @@
"source_location": "L47",
"_origin": "ast",
"id": "src_auth_command_systemownercommand_php_outputinterface",
- "community": 205,
+ "community": 757,
"norm_label": "outputinterface"
},
{
@@ -18454,30 +18594,40 @@
"norm_label": ".__construct()"
},
{
- "label": ".supports()",
+ "label": ".isTrustedServiceLogin()",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L35",
+ "source_location": "L41",
"_origin": "ast",
- "id": "security_passwordauthenticator_passwordauthenticator_supports",
+ "id": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin",
"community": 294,
- "norm_label": ".supports()"
+ "norm_label": ".istrustedservicelogin()"
},
{
"label": "Request",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L35",
+ "source_location": "L41",
"_origin": "ast",
"id": "src_auth_security_passwordauthenticator_php_request",
"community": 294,
"norm_label": "request"
},
+ {
+ "label": ".supports()",
+ "file_type": "code",
+ "source_file": "src/Auth/Security/PasswordAuthenticator.php",
+ "source_location": "L47",
+ "_origin": "ast",
+ "id": "security_passwordauthenticator_passwordauthenticator_supports",
+ "community": 294,
+ "norm_label": ".supports()"
+ },
{
"label": ".authenticate()",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L41",
+ "source_location": "L53",
"_origin": "ast",
"id": "security_passwordauthenticator_passwordauthenticator_authenticate",
"community": 294,
@@ -18487,7 +18637,7 @@
"label": "Passport",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L41",
+ "source_location": "L53",
"_origin": "ast",
"id": "passport",
"community": 294,
@@ -18497,7 +18647,7 @@
"label": ".onAuthenticationSuccess()",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L61",
+ "source_location": "L75",
"_origin": "ast",
"id": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess",
"community": 294,
@@ -18507,7 +18657,7 @@
"label": "TokenInterface",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L61",
+ "source_location": "L75",
"_origin": "ast",
"id": "tokeninterface",
"community": 294,
@@ -18517,7 +18667,7 @@
"label": "Response",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L61",
+ "source_location": "L75",
"_origin": "ast",
"id": "src_auth_security_passwordauthenticator_php_response",
"community": 294,
@@ -18527,7 +18677,7 @@
"label": ".onAuthenticationFailure()",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L97",
+ "source_location": "L111",
"_origin": "ast",
"id": "security_passwordauthenticator_passwordauthenticator_onauthenticationfailure",
"community": 294,
@@ -18537,7 +18687,7 @@
"label": "AuthenticationException",
"file_type": "code",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L97",
+ "source_location": "L111",
"_origin": "ast",
"id": "authenticationexception",
"community": 204,
@@ -19960,7 +20110,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_invoicerepository",
- "community": 483,
+ "community": 53,
"norm_label": "invoicerepository.php"
},
{
@@ -19970,7 +20120,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_invoicerepository_invoicerepository",
- "community": 483,
+ "community": 53,
"norm_label": "invoicerepository"
},
{
@@ -19980,7 +20130,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_invoicerepository_invoicerepository_construct",
- "community": 483,
+ "community": 53,
"norm_label": ".__construct()"
},
{
@@ -19990,7 +20140,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_billing_repository_invoicerepository_php_managerregistry",
- "community": 483,
+ "community": 53,
"norm_label": "managerregistry"
},
{
@@ -20000,7 +20150,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_invoicerepository_invoicerepository_findbyuuid",
- "community": 483,
+ "community": 53,
"norm_label": ".findbyuuid()"
},
{
@@ -20010,7 +20160,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "src_billing_repository_invoicerepository_php_invoice",
- "community": 483,
+ "community": 53,
"norm_label": "invoice"
},
{
@@ -20020,7 +20170,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "repository_invoicerepository_invoicerepository_findbysession",
- "community": 483,
+ "community": 53,
"norm_label": ".findbysession()"
},
{
@@ -20030,7 +20180,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "repository_invoicerepository_invoicerepository_save",
- "community": 483,
+ "community": 53,
"norm_label": ".save()"
},
{
@@ -20450,7 +20600,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "controller_blogcontroller",
- "community": 435,
+ "community": 58,
"norm_label": "blogcontroller.php"
},
{
@@ -20460,7 +20610,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller",
- "community": 435,
+ "community": 58,
"norm_label": "blogcontroller"
},
{
@@ -20470,7 +20620,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_construct",
- "community": 435,
+ "community": 58,
"norm_label": ".__construct()"
},
{
@@ -20480,7 +20630,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_list",
- "community": 435,
+ "community": 58,
"norm_label": ".list()"
},
{
@@ -20490,7 +20640,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "src_blog_controller_blogcontroller_php_request",
- "community": 435,
+ "community": 58,
"norm_label": "request"
},
{
@@ -20500,7 +20650,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "src_blog_controller_blogcontroller_php_jsonresponse",
- "community": 435,
+ "community": 58,
"norm_label": "jsonresponse"
},
{
@@ -20510,7 +20660,7 @@
"source_location": "L71",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_detail",
- "community": 435,
+ "community": 58,
"norm_label": ".detail()"
},
{
@@ -20520,7 +20670,7 @@
"source_location": "L116",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_create",
- "community": 435,
+ "community": 58,
"norm_label": ".create()"
},
{
@@ -20530,7 +20680,7 @@
"source_location": "L116",
"_origin": "ast",
"id": "src_blog_controller_blogcontroller_php_user",
- "community": 435,
+ "community": 58,
"norm_label": "user"
},
{
@@ -20540,7 +20690,7 @@
"source_location": "L204",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_update",
- "community": 435,
+ "community": 58,
"norm_label": ".update()"
},
{
@@ -20550,7 +20700,7 @@
"source_location": "L272",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_delete",
- "community": 435,
+ "community": 58,
"norm_label": ".delete()"
},
{
@@ -20560,7 +20710,7 @@
"source_location": "L321",
"_origin": "ast",
"id": "controller_blogcontroller_blogcontroller_uploadimage",
- "community": 435,
+ "community": 58,
"norm_label": ".uploadimage()"
},
{
@@ -20990,7 +21140,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_seedcategoriescommand",
- "community": 205,
+ "community": 761,
"norm_label": "seedcategoriescommand.php"
},
{
@@ -21000,7 +21150,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "command_seedcategoriescommand_seedcategoriescommand",
- "community": 205,
+ "community": 761,
"norm_label": "seedcategoriescommand"
},
{
@@ -21010,7 +21160,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "command_seedcategoriescommand_seedcategoriescommand_construct",
- "community": 205,
+ "community": 761,
"norm_label": ".__construct()"
},
{
@@ -21020,7 +21170,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "command_seedcategoriescommand_seedcategoriescommand_execute",
- "community": 205,
+ "community": 761,
"norm_label": ".execute()"
},
{
@@ -21030,7 +21180,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_category_command_seedcategoriescommand_php_inputinterface",
- "community": 205,
+ "community": 761,
"norm_label": "inputinterface"
},
{
@@ -21040,7 +21190,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_category_command_seedcategoriescommand_php_outputinterface",
- "community": 205,
+ "community": 761,
"norm_label": "outputinterface"
},
{
@@ -21090,7 +21240,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "controller_categoryimportcontroller",
- "community": 576,
+ "community": 690,
"norm_label": "categoryimportcontroller.php"
},
{
@@ -21100,7 +21250,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "controller_categoryimportcontroller_categoryimportcontroller",
- "community": 576,
+ "community": 690,
"norm_label": "categoryimportcontroller"
},
{
@@ -21110,7 +21260,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "controller_categoryimportcontroller_categoryimportcontroller_construct",
- "community": 576,
+ "community": 690,
"norm_label": ".__construct()"
},
{
@@ -21120,7 +21270,7 @@
"source_location": "L39",
"_origin": "ast",
"id": "controller_categoryimportcontroller_categoryimportcontroller_export",
- "community": 576,
+ "community": 690,
"norm_label": ".export()"
},
{
@@ -21130,7 +21280,7 @@
"source_location": "L39",
"_origin": "ast",
"id": "src_category_controller_categoryimportcontroller_php_jsonresponse",
- "community": 576,
+ "community": 690,
"norm_label": "jsonresponse"
},
{
@@ -21140,7 +21290,7 @@
"source_location": "L49",
"_origin": "ast",
"id": "controller_categoryimportcontroller_categoryimportcontroller_import",
- "community": 576,
+ "community": 690,
"norm_label": ".import()"
},
{
@@ -21150,7 +21300,7 @@
"source_location": "L49",
"_origin": "ast",
"id": "src_category_controller_categoryimportcontroller_php_request",
- "community": 576,
+ "community": 690,
"norm_label": "request"
},
{
@@ -21170,7 +21320,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter",
- "community": 82,
+ "community": 530,
"norm_label": "categoryimporter"
},
{
@@ -21180,7 +21330,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_construct",
- "community": 82,
+ "community": 530,
"norm_label": ".__construct()"
},
{
@@ -21190,7 +21340,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_isvalidbundle",
- "community": 82,
+ "community": 530,
"norm_label": ".isvalidbundle()"
},
{
@@ -21200,7 +21350,7 @@
"source_location": "L38",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_exportall",
- "community": 82,
+ "community": 530,
"norm_label": ".exportall()"
},
{
@@ -21210,7 +21360,7 @@
"source_location": "L66",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_validate",
- "community": 82,
+ "community": 530,
"norm_label": ".validate()"
},
{
@@ -21220,7 +21370,7 @@
"source_location": "L179",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_replace",
- "community": 82,
+ "community": 530,
"norm_label": ".replace()"
},
{
@@ -21230,7 +21380,7 @@
"source_location": "L198",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_validatereferences",
- "community": 82,
+ "community": 530,
"norm_label": ".validatereferences()"
},
{
@@ -21240,7 +21390,7 @@
"source_location": "L242",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_existingids",
- "community": 82,
+ "community": 530,
"norm_label": ".existingids()"
},
{
@@ -21250,7 +21400,7 @@
"source_location": "L251",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_ispositiveint",
- "community": 82,
+ "community": 530,
"norm_label": ".ispositiveint()"
},
{
@@ -21260,7 +21410,7 @@
"source_location": "L256",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_normint",
- "community": 82,
+ "community": 530,
"norm_label": ".normint()"
},
{
@@ -21270,7 +21420,7 @@
"source_location": "L263",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_nullableid",
- "community": 82,
+ "community": 530,
"norm_label": ".nullableid()"
},
{
@@ -21280,7 +21430,7 @@
"source_location": "L273",
"_origin": "ast",
"id": "service_categoryimporter_categoryimporter_optstr",
- "community": 82,
+ "community": 530,
"norm_label": ".optstr()"
},
{
@@ -24330,7 +24480,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_siteconfigrepository",
- "community": 53,
+ "community": 760,
"norm_label": "siteconfigrepository.php"
},
{
@@ -24340,7 +24490,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_siteconfigrepository_siteconfigrepository",
- "community": 53,
+ "community": 760,
"norm_label": "siteconfigrepository"
},
{
@@ -24350,7 +24500,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "repository_siteconfigrepository_siteconfigrepository_construct",
- "community": 53,
+ "community": 760,
"norm_label": ".__construct()"
},
{
@@ -24360,7 +24510,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_config_repository_siteconfigrepository_php_managerregistry",
- "community": 53,
+ "community": 760,
"norm_label": "managerregistry"
},
{
@@ -24370,7 +24520,7 @@
"source_location": "L40",
"_origin": "ast",
"id": "repository_siteconfigrepository_siteconfigrepository_get",
- "community": 53,
+ "community": 760,
"norm_label": ".get()"
},
{
@@ -24380,7 +24530,7 @@
"source_location": "L49",
"_origin": "ast",
"id": "repository_siteconfigrepository_siteconfigrepository_getall",
- "community": 53,
+ "community": 760,
"norm_label": ".getall()"
},
{
@@ -24390,7 +24540,7 @@
"source_location": "L65",
"_origin": "ast",
"id": "repository_siteconfigrepository_siteconfigrepository_set",
- "community": 53,
+ "community": 760,
"norm_label": ".set()"
},
{
@@ -24583,6 +24733,316 @@
"community": 654,
"norm_label": "clinic"
},
+ {
+ "label": "BackfillSurrogateRoleCommand.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "command_backfillsurrogaterolecommand",
+ "community": 748,
+ "norm_label": "backfillsurrogaterolecommand.php"
+ },
+ {
+ "label": "BackfillSurrogateRoleCommand",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L24",
+ "_origin": "ast",
+ "id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand",
+ "community": 748,
+ "norm_label": "backfillsurrogaterolecommand"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_construct",
+ "community": 748,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".configure()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L35",
+ "_origin": "ast",
+ "id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_configure",
+ "community": 748,
+ "norm_label": ".configure()"
+ },
+ {
+ "label": ".execute()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "_origin": "ast",
+ "id": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute",
+ "community": 748,
+ "norm_label": ".execute()"
+ },
+ {
+ "label": "InputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "_origin": "ast",
+ "id": "src_doctor_command_backfillsurrogaterolecommand_php_inputinterface",
+ "community": 748,
+ "norm_label": "inputinterface"
+ },
+ {
+ "label": "OutputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "_origin": "ast",
+ "id": "src_doctor_command_backfillsurrogaterolecommand_php_outputinterface",
+ "community": 748,
+ "norm_label": "outputinterface"
+ },
+ {
+ "label": "FixIrimcNamesCommand.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "command_fixirimcnamescommand",
+ "community": 753,
+ "norm_label": "fixirimcnamescommand.php"
+ },
+ {
+ "label": "FixIrimcNamesCommand",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "command_fixirimcnamescommand_fixirimcnamescommand",
+ "community": 753,
+ "norm_label": "fixirimcnamescommand"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "command_fixirimcnamescommand_fixirimcnamescommand_construct",
+ "community": 753,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".configure()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L33",
+ "_origin": "ast",
+ "id": "command_fixirimcnamescommand_fixirimcnamescommand_configure",
+ "community": 753,
+ "norm_label": ".configure()"
+ },
+ {
+ "label": ".execute()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "_origin": "ast",
+ "id": "command_fixirimcnamescommand_fixirimcnamescommand_execute",
+ "community": 753,
+ "norm_label": ".execute()"
+ },
+ {
+ "label": "InputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "_origin": "ast",
+ "id": "src_doctor_command_fixirimcnamescommand_php_inputinterface",
+ "community": 753,
+ "norm_label": "inputinterface"
+ },
+ {
+ "label": "OutputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "_origin": "ast",
+ "id": "src_doctor_command_fixirimcnamescommand_php_outputinterface",
+ "community": 753,
+ "norm_label": "outputinterface"
+ },
+ {
+ "label": "PurgeDoctorsCommand.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "command_purgedoctorscommand",
+ "community": 687,
+ "norm_label": "purgedoctorscommand.php"
+ },
+ {
+ "label": "PurgeDoctorsCommand",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "command_purgedoctorscommand_purgedoctorscommand",
+ "community": 687,
+ "norm_label": "purgedoctorscommand"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L36",
+ "_origin": "ast",
+ "id": "command_purgedoctorscommand_purgedoctorscommand_construct",
+ "community": 687,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".configure()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L41",
+ "_origin": "ast",
+ "id": "command_purgedoctorscommand_purgedoctorscommand_configure",
+ "community": 687,
+ "norm_label": ".configure()"
+ },
+ {
+ "label": ".execute()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "_origin": "ast",
+ "id": "command_purgedoctorscommand_purgedoctorscommand_execute",
+ "community": 687,
+ "norm_label": ".execute()"
+ },
+ {
+ "label": "InputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "_origin": "ast",
+ "id": "src_doctor_command_purgedoctorscommand_php_inputinterface",
+ "community": 687,
+ "norm_label": "inputinterface"
+ },
+ {
+ "label": "OutputInterface",
+ "file_type": "code",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "_origin": "ast",
+ "id": "src_doctor_command_purgedoctorscommand_php_outputinterface",
+ "community": 687,
+ "norm_label": "outputinterface"
+ },
+ {
+ "label": "DoctorClaimController.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller",
+ "community": 739,
+ "norm_label": "doctorclaimcontroller.php"
+ },
+ {
+ "label": "DoctorClaimController",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L19",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "community": 739,
+ "norm_label": "doctorclaimcontroller"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller_construct",
+ "community": 739,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".claimInfo()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo",
+ "community": 739,
+ "norm_label": ".claiminfo()"
+ },
+ {
+ "label": "JsonResponse",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse",
+ "community": 739,
+ "norm_label": "jsonresponse"
+ },
+ {
+ "label": ".claim()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L52",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller_claim",
+ "community": 739,
+ "norm_label": ".claim()"
+ },
+ {
+ "label": "Request",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L52",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorclaimcontroller_php_request",
+ "community": 739,
+ "norm_label": "request"
+ },
+ {
+ "label": "User",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L52",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorclaimcontroller_php_user",
+ "community": 739,
+ "norm_label": "user"
+ },
+ {
+ "label": ".transfer()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L123",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer",
+ "community": 739,
+ "norm_label": ".transfer()"
+ },
+ {
+ "label": ".claimsList()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L166",
+ "_origin": "ast",
+ "id": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist",
+ "community": 739,
+ "norm_label": ".claimslist()"
+ },
{
"label": "DoctorController.php",
"file_type": "code",
@@ -24707,7 +25167,7 @@
"label": ".uploadImage()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L390",
+ "source_location": "L396",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_uploadimage",
"community": 75,
@@ -24717,7 +25177,7 @@
"label": ".createAddress()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L484",
+ "source_location": "L490",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_createaddress",
"community": 75,
@@ -24727,7 +25187,7 @@
"label": ".showAddress()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L547",
+ "source_location": "L553",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_showaddress",
"community": 75,
@@ -24737,7 +25197,7 @@
"label": ".updateAddress()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L585",
+ "source_location": "L591",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_updateaddress",
"community": 75,
@@ -24747,7 +25207,7 @@
"label": ".deleteAddress()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L644",
+ "source_location": "L650",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_deleteaddress",
"community": 75,
@@ -24757,7 +25217,7 @@
"label": ".listAddresses()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L690",
+ "source_location": "L696",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_listaddresses",
"community": 75,
@@ -24767,7 +25227,7 @@
"label": ".hydrateDoctor()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L735",
+ "source_location": "L741",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_hydratedoctor",
"community": 75,
@@ -24777,7 +25237,7 @@
"label": "Doctor",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L735",
+ "source_location": "L741",
"_origin": "ast",
"id": "src_doctor_controller_doctorcontroller_php_doctor",
"community": 75,
@@ -24787,7 +25247,7 @@
"label": ".hydrateAddress()",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L808",
+ "source_location": "L814",
"_origin": "ast",
"id": "controller_doctorcontroller_doctorcontroller_hydrateaddress",
"community": 75,
@@ -24797,12 +25257,82 @@
"label": "DoctorAddress",
"file_type": "code",
"source_file": "src/Doctor/Controller/DoctorController.php",
- "source_location": "L808",
+ "source_location": "L814",
"_origin": "ast",
"id": "src_doctor_controller_doctorcontroller_php_doctoraddress",
"community": 75,
"norm_label": "doctoraddress"
},
+ {
+ "label": "DoctorImportController.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "controller_doctorimportcontroller",
+ "community": 108,
+ "norm_label": "doctorimportcontroller.php"
+ },
+ {
+ "label": "DoctorImportController",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "controller_doctorimportcontroller_doctorimportcontroller",
+ "community": 108,
+ "norm_label": "doctorimportcontroller"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L26",
+ "_origin": "ast",
+ "id": "controller_doctorimportcontroller_doctorimportcontroller_construct",
+ "community": 108,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".import()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "controller_doctorimportcontroller_doctorimportcontroller_import",
+ "community": 108,
+ "norm_label": ".import()"
+ },
+ {
+ "label": "Request",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorimportcontroller_php_request",
+ "community": 108,
+ "norm_label": "request"
+ },
+ {
+ "label": "User",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorimportcontroller_php_user",
+ "community": 108,
+ "norm_label": "user"
+ },
+ {
+ "label": "JsonResponse",
+ "file_type": "code",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "src_doctor_controller_doctorimportcontroller_php_jsonresponse",
+ "community": 108,
+ "norm_label": "jsonresponse"
+ },
{
"label": "Doctor.php",
"file_type": "code",
@@ -24827,7 +25357,7 @@
"label": "User",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L34",
+ "source_location": "L36",
"_origin": "ast",
"id": "src_doctor_entity_doctor_php_user",
"community": 4,
@@ -24837,7 +25367,7 @@
"label": "Collection",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L106",
+ "source_location": "L108",
"_origin": "ast",
"id": "src_doctor_entity_doctor_php_collection",
"community": 4,
@@ -24847,7 +25377,7 @@
"label": ".__construct()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L141",
+ "source_location": "L143",
"_origin": "ast",
"id": "entity_doctor_doctor_construct",
"community": 4,
@@ -24857,7 +25387,7 @@
"label": ".getId()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L155",
+ "source_location": "L157",
"_origin": "ast",
"id": "entity_doctor_doctor_getid",
"community": 4,
@@ -24867,7 +25397,7 @@
"label": ".getUuid()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L159",
+ "source_location": "L161",
"_origin": "ast",
"id": "entity_doctor_doctor_getuuid",
"community": 4,
@@ -24877,7 +25407,7 @@
"label": ".getUser()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L163",
+ "source_location": "L165",
"_origin": "ast",
"id": "entity_doctor_doctor_getuser",
"community": 4,
@@ -24887,7 +25417,7 @@
"label": ".getName()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L167",
+ "source_location": "L169",
"_origin": "ast",
"id": "entity_doctor_doctor_getname",
"community": 4,
@@ -24897,7 +25427,7 @@
"label": ".getGender()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L171",
+ "source_location": "L173",
"_origin": "ast",
"id": "entity_doctor_doctor_getgender",
"community": 4,
@@ -24907,7 +25437,7 @@
"label": ".getMedicalSystemCode()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L175",
+ "source_location": "L177",
"_origin": "ast",
"id": "entity_doctor_doctor_getmedicalsystemcode",
"community": 4,
@@ -24917,7 +25447,7 @@
"label": ".getMobileNumber()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L179",
+ "source_location": "L181",
"_origin": "ast",
"id": "entity_doctor_doctor_getmobilenumber",
"community": 4,
@@ -24927,7 +25457,7 @@
"label": ".getActivityTime()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L183",
+ "source_location": "L185",
"_origin": "ast",
"id": "entity_doctor_doctor_getactivitytime",
"community": 4,
@@ -24937,7 +25467,7 @@
"label": ".getDegree()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L187",
+ "source_location": "L189",
"_origin": "ast",
"id": "entity_doctor_doctor_getdegree",
"community": 4,
@@ -24947,7 +25477,7 @@
"label": ".getInfo()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L191",
+ "source_location": "L193",
"_origin": "ast",
"id": "entity_doctor_doctor_getinfo",
"community": 4,
@@ -24957,7 +25487,7 @@
"label": ".getImages()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L195",
+ "source_location": "L197",
"_origin": "ast",
"id": "entity_doctor_doctor_getimages",
"community": 4,
@@ -24967,7 +25497,7 @@
"label": ".getSocialMedia()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L199",
+ "source_location": "L201",
"_origin": "ast",
"id": "entity_doctor_doctor_getsocialmedia",
"community": 4,
@@ -24977,7 +25507,7 @@
"label": ".getDoctorRate()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L203",
+ "source_location": "L205",
"_origin": "ast",
"id": "entity_doctor_doctor_getdoctorrate",
"community": 4,
@@ -24987,7 +25517,7 @@
"label": ".getDoctorRatePercentage()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L207",
+ "source_location": "L209",
"_origin": "ast",
"id": "entity_doctor_doctor_getdoctorratepercentage",
"community": 4,
@@ -24997,7 +25527,7 @@
"label": ".isActiveDoctorAppointment()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L211",
+ "source_location": "L213",
"_origin": "ast",
"id": "entity_doctor_doctor_isactivedoctorappointment",
"community": 4,
@@ -25007,7 +25537,7 @@
"label": ".getRepresentationId()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L215",
+ "source_location": "L217",
"_origin": "ast",
"id": "entity_doctor_doctor_getrepresentationid",
"community": 4,
@@ -25017,7 +25547,7 @@
"label": ".getNotificationMobile()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L219",
+ "source_location": "L221",
"_origin": "ast",
"id": "entity_doctor_doctor_getnotificationmobile",
"community": 4,
@@ -25027,7 +25557,7 @@
"label": ".getOwnerStatus()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L223",
+ "source_location": "L225",
"_origin": "ast",
"id": "entity_doctor_doctor_getownerstatus",
"community": 4,
@@ -25037,7 +25567,7 @@
"label": ".getSource()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L227",
+ "source_location": "L229",
"_origin": "ast",
"id": "entity_doctor_doctor_getsource",
"community": 4,
@@ -25047,7 +25577,7 @@
"label": ".getSourceRef()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L231",
+ "source_location": "L233",
"_origin": "ast",
"id": "entity_doctor_doctor_getsourceref",
"community": 4,
@@ -25057,7 +25587,7 @@
"label": ".getManagedBy()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L235",
+ "source_location": "L237",
"_origin": "ast",
"id": "entity_doctor_doctor_getmanagedby",
"community": 4,
@@ -25067,7 +25597,7 @@
"label": ".getClaimedAt()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L239",
+ "source_location": "L241",
"_origin": "ast",
"id": "entity_doctor_doctor_getclaimedat",
"community": 4,
@@ -25077,7 +25607,7 @@
"label": ".getCreatedAt()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L243",
+ "source_location": "L245",
"_origin": "ast",
"id": "entity_doctor_doctor_getcreatedat",
"community": 4,
@@ -25087,7 +25617,7 @@
"label": ".getUpdatedAt()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L247",
+ "source_location": "L249",
"_origin": "ast",
"id": "entity_doctor_doctor_getupdatedat",
"community": 4,
@@ -25097,7 +25627,7 @@
"label": ".getSpecialties()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L251",
+ "source_location": "L253",
"_origin": "ast",
"id": "entity_doctor_doctor_getspecialties",
"community": 4,
@@ -25107,7 +25637,7 @@
"label": ".getServices()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L255",
+ "source_location": "L257",
"_origin": "ast",
"id": "entity_doctor_doctor_getservices",
"community": 4,
@@ -25117,7 +25647,7 @@
"label": ".getProvinces()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L259",
+ "source_location": "L261",
"_origin": "ast",
"id": "entity_doctor_doctor_getprovinces",
"community": 4,
@@ -25127,7 +25657,7 @@
"label": ".getCities()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L263",
+ "source_location": "L265",
"_origin": "ast",
"id": "entity_doctor_doctor_getcities",
"community": 4,
@@ -25137,7 +25667,7 @@
"label": ".getAddresses()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L267",
+ "source_location": "L269",
"_origin": "ast",
"id": "entity_doctor_doctor_getaddresses",
"community": 4,
@@ -25147,7 +25677,7 @@
"label": ".setName()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L272",
+ "source_location": "L274",
"_origin": "ast",
"id": "entity_doctor_doctor_setname",
"community": 4,
@@ -25157,7 +25687,7 @@
"label": "self",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L272",
+ "source_location": "L274",
"_origin": "ast",
"id": "src_doctor_entity_doctor_php_self",
"community": 4,
@@ -25167,7 +25697,7 @@
"label": ".setGender()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L277",
+ "source_location": "L279",
"_origin": "ast",
"id": "entity_doctor_doctor_setgender",
"community": 4,
@@ -25177,7 +25707,7 @@
"label": ".setMedicalSystemCode()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L283",
+ "source_location": "L285",
"_origin": "ast",
"id": "entity_doctor_doctor_setmedicalsystemcode",
"community": 4,
@@ -25187,7 +25717,7 @@
"label": ".setMobileNumber()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L289",
+ "source_location": "L291",
"_origin": "ast",
"id": "entity_doctor_doctor_setmobilenumber",
"community": 4,
@@ -25197,7 +25727,7 @@
"label": ".setActivityTime()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L295",
+ "source_location": "L297",
"_origin": "ast",
"id": "entity_doctor_doctor_setactivitytime",
"community": 4,
@@ -25207,7 +25737,7 @@
"label": ".setDegree()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L301",
+ "source_location": "L303",
"_origin": "ast",
"id": "entity_doctor_doctor_setdegree",
"community": 4,
@@ -25217,7 +25747,7 @@
"label": ".setInfo()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L307",
+ "source_location": "L309",
"_origin": "ast",
"id": "entity_doctor_doctor_setinfo",
"community": 4,
@@ -25227,7 +25757,7 @@
"label": ".setImages()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L313",
+ "source_location": "L315",
"_origin": "ast",
"id": "entity_doctor_doctor_setimages",
"community": 4,
@@ -25237,7 +25767,7 @@
"label": ".setSocialMedia()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L319",
+ "source_location": "L321",
"_origin": "ast",
"id": "entity_doctor_doctor_setsocialmedia",
"community": 4,
@@ -25247,7 +25777,7 @@
"label": ".setDoctorRate()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L325",
+ "source_location": "L327",
"_origin": "ast",
"id": "entity_doctor_doctor_setdoctorrate",
"community": 4,
@@ -25257,7 +25787,7 @@
"label": ".setDoctorRatePercentage()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L331",
+ "source_location": "L333",
"_origin": "ast",
"id": "entity_doctor_doctor_setdoctorratepercentage",
"community": 4,
@@ -25267,7 +25797,7 @@
"label": ".setActiveDoctorAppointment()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L337",
+ "source_location": "L339",
"_origin": "ast",
"id": "entity_doctor_doctor_setactivedoctorappointment",
"community": 4,
@@ -25277,7 +25807,7 @@
"label": ".setRepresentationId()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L343",
+ "source_location": "L345",
"_origin": "ast",
"id": "entity_doctor_doctor_setrepresentationid",
"community": 4,
@@ -25287,7 +25817,7 @@
"label": ".setNotificationMobile()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L349",
+ "source_location": "L351",
"_origin": "ast",
"id": "entity_doctor_doctor_setnotificationmobile",
"community": 4,
@@ -25297,7 +25827,7 @@
"label": ".setOwnerStatus()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L355",
+ "source_location": "L357",
"_origin": "ast",
"id": "entity_doctor_doctor_setownerstatus",
"community": 4,
@@ -25307,7 +25837,7 @@
"label": ".setSource()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L361",
+ "source_location": "L363",
"_origin": "ast",
"id": "entity_doctor_doctor_setsource",
"community": 4,
@@ -25317,7 +25847,7 @@
"label": ".setSourceRef()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L367",
+ "source_location": "L369",
"_origin": "ast",
"id": "entity_doctor_doctor_setsourceref",
"community": 4,
@@ -25327,7 +25857,7 @@
"label": ".setManagedBy()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L373",
+ "source_location": "L375",
"_origin": "ast",
"id": "entity_doctor_doctor_setmanagedby",
"community": 4,
@@ -25337,7 +25867,7 @@
"label": ".setClaimedAt()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L379",
+ "source_location": "L381",
"_origin": "ast",
"id": "entity_doctor_doctor_setclaimedat",
"community": 4,
@@ -25347,7 +25877,7 @@
"label": ".transferOwnershipTo()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L390",
+ "source_location": "L392",
"_origin": "ast",
"id": "entity_doctor_doctor_transferownershipto",
"community": 4,
@@ -25357,7 +25887,7 @@
"label": ".touch()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L400",
+ "source_location": "L402",
"_origin": "ast",
"id": "entity_doctor_doctor_touch",
"community": 4,
@@ -25367,7 +25897,7 @@
"label": ".computeScheduleFields()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L409",
+ "source_location": "L411",
"_origin": "ast",
"id": "entity_doctor_doctor_computeschedulefields",
"community": 4,
@@ -25377,7 +25907,7 @@
"label": "WeeklySchedule",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L409",
+ "source_location": "L411",
"_origin": "ast",
"id": "src_doctor_entity_doctor_php_weeklyschedule",
"community": 4,
@@ -25387,7 +25917,7 @@
"label": ".computeScheduleParts()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L426",
+ "source_location": "L428",
"_origin": "ast",
"id": "entity_doctor_doctor_computescheduleparts",
"community": 4,
@@ -25397,7 +25927,7 @@
"label": ".getExperience()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L496",
+ "source_location": "L498",
"_origin": "ast",
"id": "entity_doctor_doctor_getexperience",
"community": 4,
@@ -25407,7 +25937,7 @@
"label": ".toListArray()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L504",
+ "source_location": "L506",
"_origin": "ast",
"id": "entity_doctor_doctor_tolistarray",
"community": 4,
@@ -25417,7 +25947,7 @@
"label": ".toDetailArray()",
"file_type": "code",
"source_file": "src/Doctor/Entity/Doctor.php",
- "source_location": "L527",
+ "source_location": "L530",
"_origin": "ast",
"id": "entity_doctor_doctor_todetailarray",
"community": 4,
@@ -25723,6 +26253,186 @@
"community": 39,
"norm_label": ".toarray()"
},
+ {
+ "label": "DoctorClaimRequest.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest",
+ "community": 452,
+ "norm_label": "doctorclaimrequest.php"
+ },
+ {
+ "label": "DoctorClaimRequest",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L15",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest",
+ "community": 452,
+ "norm_label": "doctorclaimrequest"
+ },
+ {
+ "label": "Doctor",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L32",
+ "_origin": "ast",
+ "id": "src_doctor_entity_doctorclaimrequest_php_doctor",
+ "community": 452,
+ "norm_label": "doctor"
+ },
+ {
+ "label": "User",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L36",
+ "_origin": "ast",
+ "id": "src_doctor_entity_doctorclaimrequest_php_user",
+ "community": 452,
+ "norm_label": "user"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L61",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_construct",
+ "community": 452,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".maskMobile()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L72",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile",
+ "community": 452,
+ "norm_label": ".maskmobile()"
+ },
+ {
+ "label": ".markCompleted()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L79",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted",
+ "community": 452,
+ "norm_label": ".markcompleted()"
+ },
+ {
+ "label": ".markFailed()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L85",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_markfailed",
+ "community": 452,
+ "norm_label": ".markfailed()"
+ },
+ {
+ "label": ".getId()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L92",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getid",
+ "community": 452,
+ "norm_label": ".getid()"
+ },
+ {
+ "label": ".getUuid()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L93",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getuuid",
+ "community": 452,
+ "norm_label": ".getuuid()"
+ },
+ {
+ "label": ".getDoctor()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L94",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor",
+ "community": 452,
+ "norm_label": ".getdoctor()"
+ },
+ {
+ "label": ".getUser()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L95",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getuser",
+ "community": 452,
+ "norm_label": ".getuser()"
+ },
+ {
+ "label": ".getStatus()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L96",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getstatus",
+ "community": 452,
+ "norm_label": ".getstatus()"
+ },
+ {
+ "label": ".getFailureReason()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L97",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getfailurereason",
+ "community": 452,
+ "norm_label": ".getfailurereason()"
+ },
+ {
+ "label": ".getVerificationMethod()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L98",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getverificationmethod",
+ "community": 452,
+ "norm_label": ".getverificationmethod()"
+ },
+ {
+ "label": ".getCreatedAt()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L99",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getcreatedat",
+ "community": 452,
+ "norm_label": ".getcreatedat()"
+ },
+ {
+ "label": ".getCompletedAt()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L100",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_getcompletedat",
+ "community": 452,
+ "norm_label": ".getcompletedat()"
+ },
+ {
+ "label": ".toArray()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L102",
+ "_origin": "ast",
+ "id": "entity_doctorclaimrequest_doctorclaimrequest_toarray",
+ "community": 452,
+ "norm_label": ".toarray()"
+ },
{
"label": "DoctorAddressRepository.php",
"file_type": "code",
@@ -25843,6 +26553,46 @@
"community": 242,
"norm_label": "doctor"
},
+ {
+ "label": "DoctorClaimRequestRepository.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "repository_doctorclaimrequestrepository",
+ "community": 53,
+ "norm_label": "doctorclaimrequestrepository.php"
+ },
+ {
+ "label": "DoctorClaimRequestRepository",
+ "file_type": "code",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L9",
+ "_origin": "ast",
+ "id": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository",
+ "community": 53,
+ "norm_label": "doctorclaimrequestrepository"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L11",
+ "_origin": "ast",
+ "id": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct",
+ "community": 53,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": "ManagerRegistry",
+ "file_type": "code",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L11",
+ "_origin": "ast",
+ "id": "src_doctor_repository_doctorclaimrequestrepository_php_managerregistry",
+ "community": 53,
+ "norm_label": "managerregistry"
+ },
{
"label": "DoctorRepository.php",
"file_type": "code",
@@ -25983,6 +26733,236 @@
"community": 194,
"norm_label": ".remove()"
},
+ {
+ "label": "DoctorClaimService.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice",
+ "community": 531,
+ "norm_label": "doctorclaimservice.php"
+ },
+ {
+ "label": "DoctorClaimService",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice",
+ "community": 531,
+ "norm_label": "doctorclaimservice"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L34",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_construct",
+ "community": 531,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".claim()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_claim",
+ "community": 531,
+ "norm_label": ".claim()"
+ },
+ {
+ "label": "Doctor",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "_origin": "ast",
+ "id": "src_doctor_service_doctorclaimservice_php_doctor",
+ "community": 531,
+ "norm_label": "doctor"
+ },
+ {
+ "label": "User",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "_origin": "ast",
+ "id": "src_doctor_service_doctorclaimservice_php_user",
+ "community": 531,
+ "norm_label": "user"
+ },
+ {
+ "label": "DoctorClaimRequest",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "_origin": "ast",
+ "id": "doctorclaimrequest",
+ "community": 531,
+ "norm_label": "doctorclaimrequest"
+ },
+ {
+ "label": ".transferByAdmin()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L89",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "community": 531,
+ "norm_label": ".transferbyadmin()"
+ },
+ {
+ "label": ".verifyIdentity()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L124",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_verifyidentity",
+ "community": 531,
+ "norm_label": ".verifyidentity()"
+ },
+ {
+ "label": ".finalize()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L150",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_finalize",
+ "community": 531,
+ "norm_label": ".finalize()"
+ },
+ {
+ "label": ".revert()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L189",
+ "_origin": "ast",
+ "id": "service_doctorclaimservice_doctorclaimservice_revert",
+ "community": 531,
+ "norm_label": ".revert()"
+ },
+ {
+ "label": "DoctorImportResult.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportResult.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "service_doctorimportresult",
+ "community": 754,
+ "norm_label": "doctorimportresult.php"
+ },
+ {
+ "label": "DoctorImportResult",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportResult.php",
+ "source_location": "L7",
+ "_origin": "ast",
+ "id": "service_doctorimportresult_doctorimportresult",
+ "community": 754,
+ "norm_label": "doctorimportresult"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportResult.php",
+ "source_location": "L9",
+ "_origin": "ast",
+ "id": "service_doctorimportresult_doctorimportresult_construct",
+ "community": 754,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": "DoctorImportService.php",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "service_doctorimportservice",
+ "community": 744,
+ "norm_label": "doctorimportservice.php"
+ },
+ {
+ "label": "DoctorImportService",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L23",
+ "_origin": "ast",
+ "id": "service_doctorimportservice_doctorimportservice",
+ "community": 744,
+ "norm_label": "doctorimportservice"
+ },
+ {
+ "label": ".__construct()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "service_doctorimportservice_doctorimportservice_construct",
+ "community": 744,
+ "norm_label": ".__construct()"
+ },
+ {
+ "label": ".import()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "_origin": "ast",
+ "id": "service_doctorimportservice_doctorimportservice_import",
+ "community": 744,
+ "norm_label": ".import()"
+ },
+ {
+ "label": "User",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "_origin": "ast",
+ "id": "src_doctor_service_doctorimportservice_php_user",
+ "community": 744,
+ "norm_label": "user"
+ },
+ {
+ "label": "DoctorImportResult",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "_origin": "ast",
+ "id": "doctorimportresult",
+ "community": 744,
+ "norm_label": "doctorimportresult"
+ },
+ {
+ "label": ".doImport()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L46",
+ "_origin": "ast",
+ "id": "service_doctorimportservice_doctorimportservice_doimport",
+ "community": 744,
+ "norm_label": ".doimport()"
+ },
+ {
+ "label": ".syncRefCollection()",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L120",
+ "_origin": "ast",
+ "id": "service_doctorimportservice_doctorimportservice_syncrefcollection",
+ "community": 744,
+ "norm_label": ".syncrefcollection()"
+ },
+ {
+ "label": "Collection",
+ "file_type": "code",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L120",
+ "_origin": "ast",
+ "id": "src_doctor_service_doctorimportservice_php_collection",
+ "community": 744,
+ "norm_label": "collection"
+ },
{
"label": "DoctorServiceController.php",
"file_type": "code",
@@ -25990,7 +26970,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "controller_doctorservicecontroller",
- "community": 490,
+ "community": 7,
"norm_label": "doctorservicecontroller.php"
},
{
@@ -26000,7 +26980,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller",
- "community": 490,
+ "community": 7,
"norm_label": "doctorservicecontroller"
},
{
@@ -26010,7 +26990,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_construct",
- "community": 490,
+ "community": 7,
"norm_label": ".__construct()"
},
{
@@ -26020,7 +27000,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_list",
- "community": 490,
+ "community": 7,
"norm_label": ".list()"
},
{
@@ -26030,7 +27010,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "src_doctorservice_controller_doctorservicecontroller_php_request",
- "community": 490,
+ "community": 7,
"norm_label": "request"
},
{
@@ -26040,7 +27020,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "src_doctorservice_controller_doctorservicecontroller_php_jsonresponse",
- "community": 490,
+ "community": 7,
"norm_label": "jsonresponse"
},
{
@@ -26050,7 +27030,7 @@
"source_location": "L37",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_create",
- "community": 490,
+ "community": 7,
"norm_label": ".create()"
},
{
@@ -26060,7 +27040,7 @@
"source_location": "L62",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_update",
- "community": 490,
+ "community": 7,
"norm_label": ".update()"
},
{
@@ -26070,7 +27050,7 @@
"source_location": "L85",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_delete",
- "community": 490,
+ "community": 7,
"norm_label": ".delete()"
},
{
@@ -26080,7 +27060,7 @@
"source_location": "L98",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_adminlist",
- "community": 490,
+ "community": 7,
"norm_label": ".adminlist()"
},
{
@@ -26090,7 +27070,7 @@
"source_location": "L130",
"_origin": "ast",
"id": "controller_doctorservicecontroller_doctorservicecontroller_slugify",
- "community": 490,
+ "community": 7,
"norm_label": ".slugify()"
},
{
@@ -27430,7 +28410,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_doctorinsurancerepository",
- "community": 631,
+ "community": 53,
"norm_label": "doctorinsurancerepository.php"
},
{
@@ -27440,7 +28420,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_doctorinsurancerepository_doctorinsurancerepository",
- "community": 631,
+ "community": 53,
"norm_label": "doctorinsurancerepository"
},
{
@@ -27450,7 +28430,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_doctorinsurancerepository_doctorinsurancerepository_construct",
- "community": 631,
+ "community": 53,
"norm_label": ".__construct()"
},
{
@@ -27460,7 +28440,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_insurance_repository_doctorinsurancerepository_php_managerregistry",
- "community": 631,
+ "community": 53,
"norm_label": "managerregistry"
},
{
@@ -27470,7 +28450,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_doctorinsurancerepository_doctorinsurancerepository_save",
- "community": 631,
+ "community": 53,
"norm_label": ".save()"
},
{
@@ -27480,7 +28460,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "src_insurance_repository_doctorinsurancerepository_php_doctorinsurance",
- "community": 631,
+ "community": 53,
"norm_label": "doctorinsurance"
},
{
@@ -27490,7 +28470,7 @@
"source_location": "L24",
"_origin": "ast",
"id": "repository_doctorinsurancerepository_doctorinsurancerepository_remove",
- "community": 631,
+ "community": 53,
"norm_label": ".remove()"
},
{
@@ -27780,7 +28760,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository",
- "community": 169,
+ "community": 618,
"norm_label": "tenantservicecoveragerepository.php"
},
{
@@ -27790,7 +28770,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository",
- "community": 169,
+ "community": 618,
"norm_label": "tenantservicecoveragerepository"
},
{
@@ -27800,7 +28780,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_construct",
- "community": 169,
+ "community": 618,
"norm_label": ".__construct()"
},
{
@@ -27810,7 +28790,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_insurance_repository_tenantservicecoveragerepository_php_managerregistry",
- "community": 169,
+ "community": 618,
"norm_label": "managerregistry"
},
{
@@ -27820,7 +28800,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findonefor",
- "community": 169,
+ "community": 618,
"norm_label": ".findonefor()"
},
{
@@ -27830,7 +28810,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "tenantservicecoverage",
- "community": 169,
+ "community": 618,
"norm_label": "tenantservicecoverage"
},
{
@@ -27840,7 +28820,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_findbycontract",
- "community": 169,
+ "community": 618,
"norm_label": ".findbycontract()"
},
{
@@ -27850,7 +28830,7 @@
"source_location": "L30",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_save",
- "community": 169,
+ "community": 618,
"norm_label": ".save()"
},
{
@@ -27860,7 +28840,7 @@
"source_location": "L38",
"_origin": "ast",
"id": "repository_tenantservicecoveragerepository_tenantservicecoveragerepository_remove",
- "community": 169,
+ "community": 618,
"norm_label": ".remove()"
},
{
@@ -30110,7 +31090,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_sessionservicerepository",
- "community": 743,
+ "community": 700,
"norm_label": "sessionservicerepository.php"
},
{
@@ -30120,7 +31100,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_sessionservicerepository_sessionservicerepository",
- "community": 743,
+ "community": 700,
"norm_label": "sessionservicerepository"
},
{
@@ -30130,7 +31110,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_sessionservicerepository_sessionservicerepository_construct",
- "community": 743,
+ "community": 700,
"norm_label": ".__construct()"
},
{
@@ -30140,7 +31120,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_patient_repository_sessionservicerepository_php_managerregistry",
- "community": 743,
+ "community": 700,
"norm_label": "managerregistry"
},
{
@@ -30150,7 +31130,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_sessionservicerepository_sessionservicerepository_save",
- "community": 743,
+ "community": 700,
"norm_label": ".save()"
},
{
@@ -30160,7 +31140,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "src_patient_repository_sessionservicerepository_php_sessionservice",
- "community": 743,
+ "community": 700,
"norm_label": "sessionservice"
},
{
@@ -30900,7 +31880,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "gateway_gatewayfactory",
- "community": 530,
+ "community": 496,
"norm_label": "gatewayfactory.php"
},
{
@@ -30910,7 +31890,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory",
- "community": 530,
+ "community": 496,
"norm_label": "gatewayfactory"
},
{
@@ -30920,7 +31900,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_construct",
- "community": 530,
+ "community": 496,
"norm_label": ".__construct()"
},
{
@@ -30930,7 +31910,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "mellatgateway",
- "community": 530,
+ "community": 275,
"norm_label": "mellatgateway"
},
{
@@ -30940,7 +31920,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "sepgateway",
- "community": 530,
+ "community": 496,
"norm_label": "sepgateway"
},
{
@@ -30950,7 +31930,7 @@
"source_location": "L37",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_istestmode",
- "community": 530,
+ "community": 496,
"norm_label": ".istestmode()"
},
{
@@ -30960,7 +31940,7 @@
"source_location": "L43",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_ismellatsandbox",
- "community": 530,
+ "community": 496,
"norm_label": ".ismellatsandbox()"
},
{
@@ -30970,7 +31950,7 @@
"source_location": "L52",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_resolve",
- "community": 530,
+ "community": 496,
"norm_label": ".resolve()"
},
{
@@ -30990,7 +31970,7 @@
"source_location": "L68",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_isenabled",
- "community": 530,
+ "community": 496,
"norm_label": ".isenabled()"
},
{
@@ -31000,7 +31980,7 @@
"source_location": "L80",
"_origin": "ast",
"id": "gateway_gatewayfactory_gatewayfactory_activegateways",
- "community": 530,
+ "community": 496,
"norm_label": ".activegateways()"
},
{
@@ -31280,7 +32260,7 @@
"source_location": "L367",
"_origin": "ast",
"id": "gateway_mellatgateway_mellatgateway_time",
- "community": 66,
+ "community": 16,
"norm_label": ".time()"
},
{
@@ -31720,7 +32700,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_paymentlogrepository",
- "community": 53,
+ "community": 764,
"norm_label": "paymentlogrepository.php"
},
{
@@ -31730,7 +32710,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_paymentlogrepository_paymentlogrepository",
- "community": 53,
+ "community": 764,
"norm_label": "paymentlogrepository"
},
{
@@ -31740,7 +32720,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_paymentlogrepository_paymentlogrepository_construct",
- "community": 53,
+ "community": 764,
"norm_label": ".__construct()"
},
{
@@ -31750,7 +32730,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_payment_repository_paymentlogrepository_php_managerregistry",
- "community": 53,
+ "community": 764,
"norm_label": "managerregistry"
},
{
@@ -31760,7 +32740,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_paymentlogrepository_paymentlogrepository_save",
- "community": 53,
+ "community": 764,
"norm_label": ".save()"
},
{
@@ -31770,7 +32750,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "paymentlog",
- "community": 53,
+ "community": 764,
"norm_label": "paymentlog"
},
{
@@ -33020,7 +34000,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_likerepository",
- "community": 22,
+ "community": 483,
"norm_label": "likerepository.php"
},
{
@@ -33030,7 +34010,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_likerepository_likerepository",
- "community": 22,
+ "community": 483,
"norm_label": "likerepository"
},
{
@@ -33040,7 +34020,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "repository_likerepository_likerepository_construct",
- "community": 22,
+ "community": 483,
"norm_label": ".__construct()"
},
{
@@ -33050,7 +34030,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "src_rating_repository_likerepository_php_managerregistry",
- "community": 22,
+ "community": 483,
"norm_label": "managerregistry"
},
{
@@ -33060,7 +34040,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "repository_likerepository_likerepository_findbyuserandcomment",
- "community": 22,
+ "community": 483,
"norm_label": ".findbyuserandcomment()"
},
{
@@ -33070,7 +34050,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "src_rating_repository_likerepository_php_user",
- "community": 22,
+ "community": 483,
"norm_label": "user"
},
{
@@ -33080,7 +34060,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "src_rating_repository_likerepository_php_comment",
- "community": 22,
+ "community": 483,
"norm_label": "comment"
},
{
@@ -33090,7 +34070,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "like",
- "community": 22,
+ "community": 483,
"norm_label": "like"
},
{
@@ -33100,7 +34080,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "repository_likerepository_likerepository_countbycomment",
- "community": 22,
+ "community": 483,
"norm_label": ".countbycomment()"
},
{
@@ -33110,7 +34090,7 @@
"source_location": "L40",
"_origin": "ast",
"id": "repository_likerepository_likerepository_save",
- "community": 22,
+ "community": 483,
"norm_label": ".save()"
},
{
@@ -33120,7 +34100,7 @@
"source_location": "L41",
"_origin": "ast",
"id": "repository_likerepository_likerepository_remove",
- "community": 22,
+ "community": 483,
"norm_label": ".remove()"
},
{
@@ -33130,7 +34110,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_raterepository",
- "community": 481,
+ "community": 490,
"norm_label": "raterepository.php"
},
{
@@ -33140,7 +34120,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_raterepository_raterepository",
- "community": 481,
+ "community": 490,
"norm_label": "raterepository"
},
{
@@ -33150,7 +34130,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "repository_raterepository_raterepository_construct",
- "community": 481,
+ "community": 490,
"norm_label": ".__construct()"
},
{
@@ -33160,7 +34140,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "src_rating_repository_raterepository_php_managerregistry",
- "community": 481,
+ "community": 490,
"norm_label": "managerregistry"
},
{
@@ -33170,7 +34150,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "repository_raterepository_raterepository_findbyuseranddoctor",
- "community": 481,
+ "community": 490,
"norm_label": ".findbyuseranddoctor()"
},
{
@@ -33180,7 +34160,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "src_rating_repository_raterepository_php_user",
- "community": 481,
+ "community": 490,
"norm_label": "user"
},
{
@@ -33190,7 +34170,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "src_rating_repository_raterepository_php_doctor",
- "community": 481,
+ "community": 490,
"norm_label": "doctor"
},
{
@@ -33200,7 +34180,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "rate",
- "community": 481,
+ "community": 490,
"norm_label": "rate"
},
{
@@ -33210,7 +34190,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "repository_raterepository_raterepository_getaggregate",
- "community": 481,
+ "community": 490,
"norm_label": ".getaggregate()"
},
{
@@ -33220,7 +34200,7 @@
"source_location": "L53",
"_origin": "ast",
"id": "repository_raterepository_raterepository_save",
- "community": 481,
+ "community": 490,
"norm_label": ".save()"
},
{
@@ -35260,7 +36240,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "entity_financialbreakdown",
- "community": 67,
+ "community": 596,
"norm_label": "financialbreakdown.php"
},
{
@@ -35270,7 +36250,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown",
- "community": 67,
+ "community": 596,
"norm_label": "financialbreakdown"
},
{
@@ -35280,7 +36260,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "src_settlement_entity_financialbreakdown_php_payment",
- "community": 67,
+ "community": 596,
"norm_label": "payment"
},
{
@@ -35290,7 +36270,7 @@
"source_location": "L69",
"_origin": "ast",
"id": "src_settlement_entity_financialbreakdown_php_user",
- "community": 67,
+ "community": 596,
"norm_label": "user"
},
{
@@ -35300,7 +36280,7 @@
"source_location": "L76",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_construct",
- "community": 67,
+ "community": 596,
"norm_label": ".__construct()"
},
{
@@ -35310,7 +36290,7 @@
"source_location": "L110",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_getid",
- "community": 67,
+ "community": 596,
"norm_label": ".getid()"
},
{
@@ -35320,7 +36300,7 @@
"source_location": "L111",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_getuuid",
- "community": 67,
+ "community": 596,
"norm_label": ".getuuid()"
},
{
@@ -35330,7 +36310,7 @@
"source_location": "L112",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_getpayment",
- "community": 67,
+ "community": 596,
"norm_label": ".getpayment()"
},
{
@@ -35340,7 +36320,7 @@
"source_location": "L113",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_getsource",
- "community": 67,
+ "community": 596,
"norm_label": ".getsource()"
},
{
@@ -35350,7 +36330,7 @@
"source_location": "L114",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_getrepresentationid",
- "community": 67,
+ "community": 596,
"norm_label": ".getrepresentationid()"
},
{
@@ -35360,7 +36340,7 @@
"source_location": "L116",
"_origin": "ast",
"id": "entity_financialbreakdown_financialbreakdown_toarray",
- "community": 67,
+ "community": 596,
"norm_label": ".toarray()"
},
{
@@ -35720,7 +36700,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_financialbreakdownrepository",
- "community": 371,
+ "community": 631,
"norm_label": "financialbreakdownrepository.php"
},
{
@@ -35730,7 +36710,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "repository_financialbreakdownrepository_financialbreakdownrepository",
- "community": 371,
+ "community": 631,
"norm_label": "financialbreakdownrepository"
},
{
@@ -35740,7 +36720,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "repository_financialbreakdownrepository_financialbreakdownrepository_construct",
- "community": 371,
+ "community": 631,
"norm_label": ".__construct()"
},
{
@@ -35750,7 +36730,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "src_settlement_repository_financialbreakdownrepository_php_managerregistry",
- "community": 371,
+ "community": 631,
"norm_label": "managerregistry"
},
{
@@ -35760,7 +36740,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "repository_financialbreakdownrepository_financialbreakdownrepository_existsforpayment",
- "community": 371,
+ "community": 631,
"norm_label": ".existsforpayment()"
},
{
@@ -35770,7 +36750,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "src_settlement_repository_financialbreakdownrepository_php_payment",
- "community": 371,
+ "community": 631,
"norm_label": "payment"
},
{
@@ -35780,7 +36760,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "repository_financialbreakdownrepository_financialbreakdownrepository_save",
- "community": 371,
+ "community": 631,
"norm_label": ".save()"
},
{
@@ -35790,7 +36770,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "financialbreakdown",
- "community": 371,
+ "community": 631,
"norm_label": "financialbreakdown"
},
{
@@ -36010,7 +36990,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "service_commissionservice",
- "community": 543,
+ "community": 6,
"norm_label": "commissionservice.php"
},
{
@@ -36020,7 +37000,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "service_commissionservice_commissionservice",
- "community": 543,
+ "community": 6,
"norm_label": "commissionservice"
},
{
@@ -36030,7 +37010,7 @@
"source_location": "L22",
"_origin": "ast",
"id": "service_commissionservice_commissionservice_construct",
- "community": 543,
+ "community": 6,
"norm_label": ".__construct()"
},
{
@@ -36040,7 +37020,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "service_commissionservice_commissionservice_processappointment",
- "community": 543,
+ "community": 6,
"norm_label": ".processappointment()"
},
{
@@ -36050,7 +37030,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "src_settlement_service_commissionservice_php_payment",
- "community": 543,
+ "community": 6,
"norm_label": "payment"
},
{
@@ -36060,7 +37040,7 @@
"source_location": "L59",
"_origin": "ast",
"id": "service_commissionservice_commissionservice_processsubscription",
- "community": 543,
+ "community": 6,
"norm_label": ".processsubscription()"
},
{
@@ -36070,7 +37050,7 @@
"source_location": "L78",
"_origin": "ast",
"id": "service_commissionservice_commissionservice_resolverep",
- "community": 543,
+ "community": 6,
"norm_label": ".resolverep()"
},
{
@@ -36080,7 +37060,7 @@
"source_location": "L78",
"_origin": "ast",
"id": "src_settlement_service_commissionservice_php_representation",
- "community": 543,
+ "community": 6,
"norm_label": "representation"
},
{
@@ -36090,7 +37070,7 @@
"source_location": "L85",
"_origin": "ast",
"id": "service_commissionservice_commissionservice_settle",
- "community": 543,
+ "community": 6,
"norm_label": ".settle()"
},
{
@@ -36630,7 +37610,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "controller_healthcontroller",
- "community": 543,
+ "community": 751,
"norm_label": "healthcontroller.php"
},
{
@@ -36640,7 +37620,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "controller_healthcontroller_healthcontroller",
- "community": 543,
+ "community": 751,
"norm_label": "healthcontroller"
},
{
@@ -36650,7 +37630,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "controller_healthcontroller_healthcontroller_construct",
- "community": 543,
+ "community": 751,
"norm_label": ".__construct()"
},
{
@@ -36660,7 +37640,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "controller_healthcontroller_healthcontroller_invoke",
- "community": 543,
+ "community": 751,
"norm_label": ".__invoke()"
},
{
@@ -36670,7 +37650,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "src_shared_controller_healthcontroller_php_jsonresponse",
- "community": 543,
+ "community": 751,
"norm_label": "jsonresponse"
},
{
@@ -36730,7 +37710,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "controller_seocontroller",
- "community": 596,
+ "community": 295,
"norm_label": "seocontroller.php"
},
{
@@ -36740,7 +37720,7 @@
"source_location": "L10",
"_origin": "ast",
"id": "controller_seocontroller_seocontroller",
- "community": 596,
+ "community": 295,
"norm_label": "seocontroller"
},
{
@@ -36750,7 +37730,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "controller_seocontroller_seocontroller_robots",
- "community": 596,
+ "community": 295,
"norm_label": ".robots()"
},
{
@@ -36760,7 +37740,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "src_shared_controller_seocontroller_php_request",
- "community": 596,
+ "community": 295,
"norm_label": "request"
},
{
@@ -36770,7 +37750,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "src_shared_controller_seocontroller_php_response",
- "community": 596,
+ "community": 295,
"norm_label": "response"
},
{
@@ -36780,7 +37760,7 @@
"source_location": "L29",
"_origin": "ast",
"id": "controller_seocontroller_seocontroller_sitemap",
- "community": 596,
+ "community": 295,
"norm_label": ".sitemap()"
},
{
@@ -36790,7 +37770,7 @@
"source_location": "L45",
"_origin": "ast",
"id": "controller_seocontroller_seocontroller_isstaging",
- "community": 596,
+ "community": 295,
"norm_label": ".isstaging()"
},
{
@@ -37120,7 +38100,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "logging_applog",
- "community": 66,
+ "community": 712,
"norm_label": "applog.php"
},
{
@@ -37130,7 +38110,7 @@
"source_location": "L8",
"_origin": "ast",
"id": "logging_applog_applog",
- "community": 66,
+ "community": 712,
"norm_label": "applog"
},
{
@@ -37140,7 +38120,7 @@
"source_location": "L37",
"_origin": "ast",
"id": "logging_applog_applog_construct",
- "community": 66,
+ "community": 712,
"norm_label": ".__construct()"
},
{
@@ -37150,7 +38130,7 @@
"source_location": "L47",
"_origin": "ast",
"id": "logging_applog_applog_toarray",
- "community": 66,
+ "community": 712,
"norm_label": ".toarray()"
},
{
@@ -37220,7 +38200,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_prunelogscommand",
- "community": 205,
+ "community": 435,
"norm_label": "prunelogscommand.php"
},
{
@@ -37230,7 +38210,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "command_prunelogscommand_prunelogscommand",
- "community": 205,
+ "community": 435,
"norm_label": "prunelogscommand"
},
{
@@ -37240,7 +38220,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "command_prunelogscommand_prunelogscommand_construct",
- "community": 205,
+ "community": 435,
"norm_label": ".__construct()"
},
{
@@ -37250,7 +38230,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "command_prunelogscommand_prunelogscommand_execute",
- "community": 205,
+ "community": 435,
"norm_label": ".execute()"
},
{
@@ -37260,7 +38240,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "src_shared_logging_command_prunelogscommand_php_inputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "inputinterface"
},
{
@@ -37270,7 +38250,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "src_shared_logging_command_prunelogscommand_php_outputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "outputinterface"
},
{
@@ -37290,7 +38270,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "logging_dblogger_dblogger",
- "community": 82,
+ "community": 451,
"norm_label": "dblogger"
},
{
@@ -37310,7 +38290,7 @@
"source_location": "L28",
"_origin": "ast",
"id": "logging_dblogger_dblogger_construct",
- "community": 82,
+ "community": 451,
"norm_label": ".__construct()"
},
{
@@ -37320,7 +38300,7 @@
"source_location": "L34",
"_origin": "ast",
"id": "logging_dblogger_dblogger_log",
- "community": 82,
+ "community": 451,
"norm_label": ".log()"
},
{
@@ -37330,7 +38310,7 @@
"source_location": "L34",
"_origin": "ast",
"id": "stringable",
- "community": 82,
+ "community": 451,
"norm_label": "stringable"
},
{
@@ -37340,7 +38320,7 @@
"source_location": "L56",
"_origin": "ast",
"id": "logging_dblogger_dblogger_emergency",
- "community": 82,
+ "community": 451,
"norm_label": ".emergency()"
},
{
@@ -37350,7 +38330,7 @@
"source_location": "L57",
"_origin": "ast",
"id": "logging_dblogger_dblogger_alert",
- "community": 82,
+ "community": 451,
"norm_label": ".alert()"
},
{
@@ -37360,7 +38340,7 @@
"source_location": "L58",
"_origin": "ast",
"id": "logging_dblogger_dblogger_critical",
- "community": 82,
+ "community": 451,
"norm_label": ".critical()"
},
{
@@ -37370,7 +38350,7 @@
"source_location": "L59",
"_origin": "ast",
"id": "logging_dblogger_dblogger_error",
- "community": 82,
+ "community": 451,
"norm_label": ".error()"
},
{
@@ -37380,7 +38360,7 @@
"source_location": "L60",
"_origin": "ast",
"id": "logging_dblogger_dblogger_warning",
- "community": 82,
+ "community": 451,
"norm_label": ".warning()"
},
{
@@ -37390,7 +38370,7 @@
"source_location": "L61",
"_origin": "ast",
"id": "logging_dblogger_dblogger_notice",
- "community": 82,
+ "community": 451,
"norm_label": ".notice()"
},
{
@@ -37400,7 +38380,7 @@
"source_location": "L62",
"_origin": "ast",
"id": "logging_dblogger_dblogger_info",
- "community": 82,
+ "community": 451,
"norm_label": ".info()"
},
{
@@ -37410,7 +38390,7 @@
"source_location": "L63",
"_origin": "ast",
"id": "logging_dblogger_dblogger_debug",
- "community": 82,
+ "community": 451,
"norm_label": ".debug()"
},
{
@@ -37420,7 +38400,7 @@
"source_location": "L69",
"_origin": "ast",
"id": "logging_dblogger_dblogger_sanitize",
- "community": 82,
+ "community": 451,
"norm_label": ".sanitize()"
},
{
@@ -37430,7 +38410,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "logging_logpruneservice",
- "community": 66,
+ "community": 752,
"norm_label": "logpruneservice.php"
},
{
@@ -37440,7 +38420,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "logging_logpruneservice_logpruneservice",
- "community": 66,
+ "community": 752,
"norm_label": "logpruneservice"
},
{
@@ -37450,7 +38430,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "logging_logpruneservice_logpruneservice_construct",
- "community": 66,
+ "community": 752,
"norm_label": ".__construct()"
},
{
@@ -37460,7 +38440,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "logging_logpruneservice_logpruneservice_prunebyretention",
- "community": 66,
+ "community": 752,
"norm_label": ".prunebyretention()"
},
{
@@ -37623,11 +38603,21 @@
"community": 673,
"norm_label": ".ibanmatch()"
},
+ {
+ "label": ".personInfo()",
+ "file_type": "code",
+ "source_file": "src/Shared/Service/ApiIrService.php",
+ "source_location": "L79",
+ "_origin": "ast",
+ "id": "service_apiirservice_apiirservice_personinfo",
+ "community": 673,
+ "norm_label": ".personinfo()"
+ },
{
"label": ".post()",
"file_type": "code",
"source_file": "src/Shared/Service/ApiIrService.php",
- "source_location": "L77",
+ "source_location": "L102",
"_origin": "ast",
"id": "service_apiirservice_apiirservice_post",
"community": 673,
@@ -37637,7 +38627,7 @@
"label": ".extractMatched()",
"file_type": "code",
"source_file": "src/Shared/Service/ApiIrService.php",
- "source_location": "L113",
+ "source_location": "L138",
"_origin": "ast",
"id": "service_apiirservice_apiirservice_extractmatched",
"community": 673,
@@ -37783,6 +38773,56 @@
"community": 685,
"norm_label": ".toenglishdigits()"
},
+ {
+ "label": "PersianText.php",
+ "file_type": "code",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "util_persiantext",
+ "community": 715,
+ "norm_label": "persiantext.php"
+ },
+ {
+ "label": "PersianText",
+ "file_type": "code",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L12",
+ "_origin": "ast",
+ "id": "util_persiantext_persiantext",
+ "community": 715,
+ "norm_label": "persiantext"
+ },
+ {
+ "label": ".normalize()",
+ "file_type": "code",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L14",
+ "_origin": "ast",
+ "id": "util_persiantext_persiantext_normalize",
+ "community": 715,
+ "norm_label": ".normalize()"
+ },
+ {
+ "label": ".sameName()",
+ "file_type": "code",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L40",
+ "_origin": "ast",
+ "id": "util_persiantext_persiantext_samename",
+ "community": 715,
+ "norm_label": ".samename()"
+ },
+ {
+ "label": ".stripDoctorTitle()",
+ "file_type": "code",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L46",
+ "_origin": "ast",
+ "id": "util_persiantext_persiantext_stripdoctortitle",
+ "community": 715,
+ "norm_label": ".stripdoctortitle()"
+ },
{
"label": "SeedSmsMessageTemplatesCommand.php",
"file_type": "code",
@@ -37790,7 +38830,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "command_seedsmsmessagetemplatescommand",
- "community": 205,
+ "community": 435,
"norm_label": "seedsmsmessagetemplatescommand.php"
},
{
@@ -37800,7 +38840,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand",
- "community": 205,
+ "community": 435,
"norm_label": "seedsmsmessagetemplatescommand"
},
{
@@ -37810,7 +38850,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_construct",
- "community": 205,
+ "community": 435,
"norm_label": ".__construct()"
},
{
@@ -37820,7 +38860,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "command_seedsmsmessagetemplatescommand_seedsmsmessagetemplatescommand_execute",
- "community": 205,
+ "community": 435,
"norm_label": ".execute()"
},
{
@@ -37830,7 +38870,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "src_sms_command_seedsmsmessagetemplatescommand_php_inputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "inputinterface"
},
{
@@ -37840,7 +38880,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "src_sms_command_seedsmsmessagetemplatescommand_php_outputinterface",
- "community": 205,
+ "community": 435,
"norm_label": "outputinterface"
},
{
@@ -38970,7 +40010,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "entity_smswallet",
- "community": 66,
+ "community": 16,
"norm_label": "smswallet.php"
},
{
@@ -38980,7 +40020,7 @@
"source_location": "L8",
"_origin": "ast",
"id": "entity_smswallet_smswallet",
- "community": 66,
+ "community": 16,
"norm_label": "smswallet"
},
{
@@ -38990,7 +40030,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "entity_smswallet_smswallet_construct",
- "community": 66,
+ "community": 16,
"norm_label": ".__construct()"
},
{
@@ -39000,7 +40040,7 @@
"source_location": "L41",
"_origin": "ast",
"id": "entity_smswallet_smswallet_getid",
- "community": 66,
+ "community": 16,
"norm_label": ".getid()"
},
{
@@ -39010,7 +40050,7 @@
"source_location": "L42",
"_origin": "ast",
"id": "entity_smswallet_smswallet_getentitytype",
- "community": 66,
+ "community": 16,
"norm_label": ".getentitytype()"
},
{
@@ -39020,7 +40060,7 @@
"source_location": "L43",
"_origin": "ast",
"id": "entity_smswallet_smswallet_getentityid",
- "community": 66,
+ "community": 16,
"norm_label": ".getentityid()"
},
{
@@ -39030,7 +40070,7 @@
"source_location": "L44",
"_origin": "ast",
"id": "entity_smswallet_smswallet_getbalancerials",
- "community": 66,
+ "community": 16,
"norm_label": ".getbalancerials()"
},
{
@@ -39040,7 +40080,7 @@
"source_location": "L46",
"_origin": "ast",
"id": "entity_smswallet_smswallet_credit",
- "community": 66,
+ "community": 16,
"norm_label": ".credit()"
},
{
@@ -39050,7 +40090,7 @@
"source_location": "L52",
"_origin": "ast",
"id": "entity_smswallet_smswallet_debit",
- "community": 66,
+ "community": 16,
"norm_label": ".debit()"
},
{
@@ -39540,7 +40580,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "repository_smssettingsrepository",
- "community": 53,
+ "community": 64,
"norm_label": "smssettingsrepository.php"
},
{
@@ -39550,7 +40590,7 @@
"source_location": "L9",
"_origin": "ast",
"id": "repository_smssettingsrepository_smssettingsrepository",
- "community": 53,
+ "community": 64,
"norm_label": "smssettingsrepository"
},
{
@@ -39560,7 +40600,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "repository_smssettingsrepository_smssettingsrepository_construct",
- "community": 53,
+ "community": 64,
"norm_label": ".__construct()"
},
{
@@ -39570,7 +40610,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "src_sms_repository_smssettingsrepository_php_managerregistry",
- "community": 53,
+ "community": 64,
"norm_label": "managerregistry"
},
{
@@ -39580,7 +40620,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "repository_smssettingsrepository_smssettingsrepository_findbyentity",
- "community": 53,
+ "community": 64,
"norm_label": ".findbyentity()"
},
{
@@ -39590,7 +40630,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "smssettings",
- "community": 53,
+ "community": 64,
"norm_label": "smssettings"
},
{
@@ -39600,7 +40640,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "repository_smssettingsrepository_smssettingsrepository_save",
- "community": 53,
+ "community": 64,
"norm_label": ".save()"
},
{
@@ -39920,7 +40960,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "service_smsservice_smsservice",
- "community": 407,
+ "community": 492,
"norm_label": "smsservice"
},
{
@@ -39930,7 +40970,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "service_smsservice_smsservice_construct",
- "community": 407,
+ "community": 492,
"norm_label": ".__construct()"
},
{
@@ -39940,7 +40980,7 @@
"source_location": "L41",
"_origin": "ast",
"id": "service_smsservice_smsservice_dispatchtemplate",
- "community": 407,
+ "community": 492,
"norm_label": ".dispatchtemplate()"
},
{
@@ -39950,7 +40990,7 @@
"source_location": "L70",
"_origin": "ast",
"id": "service_smsservice_smsservice_dispatchasync",
- "community": 407,
+ "community": 492,
"norm_label": ".dispatchasync()"
},
{
@@ -39960,7 +41000,7 @@
"source_location": "L84",
"_origin": "ast",
"id": "service_smsservice_smsservice_sendnow",
- "community": 407,
+ "community": 492,
"norm_label": ".sendnow()"
},
{
@@ -39970,7 +41010,7 @@
"source_location": "L84",
"_origin": "ast",
"id": "src_sms_service_smsservice_php_sendsmsmessage",
- "community": 407,
+ "community": 492,
"norm_label": "sendsmsmessage"
},
{
@@ -39980,7 +41020,7 @@
"source_location": "L106",
"_origin": "ast",
"id": "service_smsservice_smsservice_resolveprovider",
- "community": 407,
+ "community": 492,
"norm_label": ".resolveprovider()"
},
{
@@ -39990,7 +41030,7 @@
"source_location": "L106",
"_origin": "ast",
"id": "src_sms_service_smsservice_php_smsproviderinterface",
- "community": 407,
+ "community": 492,
"norm_label": "smsproviderinterface"
},
{
@@ -43490,7 +44530,7 @@
"source_location": "L21",
"_origin": "ast",
"id": "entitymanagerinterface",
- "community": 543,
+ "community": 86,
"norm_label": "entitymanagerinterface"
},
{
@@ -43500,7 +44540,7 @@
"source_location": "L23",
"_origin": "ast",
"id": "tests_apitestcase_apitestcase_setup",
- "community": 543,
+ "community": 86,
"norm_label": ".setup()"
},
{
@@ -43740,7 +44780,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "appointment_dateoverrideownershiptest",
- "community": 86,
+ "community": 371,
"norm_label": "dateoverrideownershiptest.php"
},
{
@@ -43750,7 +44790,7 @@
"source_location": "L12",
"_origin": "ast",
"id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest",
- "community": 86,
+ "community": 371,
"norm_label": "dateoverrideownershiptest"
},
{
@@ -43760,7 +44800,7 @@
"source_location": "L14",
"_origin": "ast",
"id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_makeoverride",
- "community": 86,
+ "community": 371,
"norm_label": ".makeoverride()"
},
{
@@ -43770,7 +44810,7 @@
"source_location": "L26",
"_origin": "ast",
"id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_testownercanread",
- "community": 86,
+ "community": 371,
"norm_label": ".testownercanread()"
},
{
@@ -43780,7 +44820,7 @@
"source_location": "L33",
"_origin": "ast",
"id": "appointment_dateoverrideownershiptest_dateoverrideownershiptest_testotheruserisforbidden",
- "community": 86,
+ "community": 371,
"norm_label": ".testotheruserisforbidden()"
},
{
@@ -44460,7 +45500,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "clinicservice_serviceitemdeletecleanuptest",
- "community": 86,
+ "community": 618,
"norm_label": "serviceitemdeletecleanuptest.php"
},
{
@@ -44470,7 +45510,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "clinicservice_serviceitemdeletecleanuptest_serviceitemdeletecleanuptest",
- "community": 86,
+ "community": 618,
"norm_label": "serviceitemdeletecleanuptest"
},
{
@@ -44480,7 +45520,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "clinicservice_serviceitemdeletecleanuptest_serviceitemdeletecleanuptest_testdeletingitempurgestariffandcoverage",
- "community": 86,
+ "community": 618,
"norm_label": ".testdeletingitempurgestariffandcoverage()"
},
{
@@ -44683,6 +45723,306 @@
"community": 574,
"norm_label": ".testownercanread()"
},
+ {
+ "label": "DoctorClaimTest.php",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest",
+ "community": 531,
+ "norm_label": "doctorclaimtest.php"
+ },
+ {
+ "label": "DoctorClaimTest",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L15",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest",
+ "community": 486,
+ "norm_label": "doctorclaimtest"
+ },
+ {
+ "label": ".setUp()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L17",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_setup",
+ "community": 486,
+ "norm_label": ".setup()"
+ },
+ {
+ "label": ".mockApiIr()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L23",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_mockapiir",
+ "community": 486,
+ "norm_label": ".mockapiir()"
+ },
+ {
+ "label": ".importUnclaimedDoctor()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L32",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor",
+ "community": 486,
+ "norm_label": ".importunclaimeddoctor()"
+ },
+ {
+ "label": ".claimBody()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L44",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_claimbody",
+ "community": 486,
+ "norm_label": ".claimbody()"
+ },
+ {
+ "label": ".testSuccessfulClaimTransfersOwnershipAndDeletesSurrogate()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L55",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate",
+ "community": 486,
+ "norm_label": ".testsuccessfulclaimtransfersownershipanddeletessurrogate()"
+ },
+ {
+ "label": ".testNameMismatchRevertsToUnclaimed()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L85",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed",
+ "community": 486,
+ "norm_label": ".testnamemismatchrevertstounclaimed()"
+ },
+ {
+ "label": ".testDeceasedPersonIsRejected()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L105",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected",
+ "community": 486,
+ "norm_label": ".testdeceasedpersonisrejected()"
+ },
+ {
+ "label": ".testShahkarMismatchIsRejected()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L116",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected",
+ "community": 486,
+ "norm_label": ".testshahkarmismatchisrejected()"
+ },
+ {
+ "label": ".testAlreadyClaimedIsConflict()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L127",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict",
+ "community": 486,
+ "norm_label": ".testalreadyclaimedisconflict()"
+ },
+ {
+ "label": ".testUserWhoAlreadyOwnsADoctorCannotClaim()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L141",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim",
+ "community": 486,
+ "norm_label": ".testuserwhoalreadyownsadoctorcannotclaim()"
+ },
+ {
+ "label": ".testValidationErrors()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L159",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors",
+ "community": 486,
+ "norm_label": ".testvalidationerrors()"
+ },
+ {
+ "label": ".testMobileMismatchIsRejected()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L172",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected",
+ "community": 486,
+ "norm_label": ".testmobilemismatchisrejected()"
+ },
+ {
+ "label": ".testOwnerCanDeleteOwnProfileButOthersCannot()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L184",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot",
+ "community": 486,
+ "norm_label": ".testownercandeleteownprofilebutotherscannot()"
+ },
+ {
+ "label": ".testUnclaimedProfileNotDeletableByRandomUser()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L205",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser",
+ "community": 486,
+ "norm_label": ".testunclaimedprofilenotdeletablebyrandomuser()"
+ },
+ {
+ "label": ".testClaimInfoIsPublic()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L213",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic",
+ "community": 486,
+ "norm_label": ".testclaiminfoispublic()"
+ },
+ {
+ "label": ".testAdminTransferHappyPath()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L224",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath",
+ "community": 486,
+ "norm_label": ".testadmintransferhappypath()"
+ },
+ {
+ "label": ".testAdminTransferRequiresAdmin()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L246",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin",
+ "community": 486,
+ "norm_label": ".testadmintransferrequiresadmin()"
+ },
+ {
+ "label": ".testClaimRequiresAuthentication()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L254",
+ "_origin": "ast",
+ "id": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication",
+ "community": 486,
+ "norm_label": ".testclaimrequiresauthentication()"
+ },
+ {
+ "label": "DoctorImportTest.php",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest",
+ "community": 743,
+ "norm_label": "doctorimporttest.php"
+ },
+ {
+ "label": "DoctorImportTest",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L13",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest",
+ "community": 743,
+ "norm_label": "doctorimporttest"
+ },
+ {
+ "label": ".importPayload()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L15",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_importpayload",
+ "community": 743,
+ "norm_label": ".importpayload()"
+ },
+ {
+ "label": ".freshCode()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_freshcode",
+ "community": 743,
+ "norm_label": ".freshcode()"
+ },
+ {
+ "label": ".testImportCreatesUnclaimedDoctorWithSurrogateUser()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L33",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser",
+ "community": 743,
+ "norm_label": ".testimportcreatesunclaimeddoctorwithsurrogateuser()"
+ },
+ {
+ "label": ".testReimportUpdatesInsteadOfDuplicating()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L58",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating",
+ "community": 743,
+ "norm_label": ".testreimportupdatesinsteadofduplicating()"
+ },
+ {
+ "label": ".testClaimedDoctorIsNeverOverwritten()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L83",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten",
+ "community": 743,
+ "norm_label": ".testclaimeddoctorisneveroverwritten()"
+ },
+ {
+ "label": ".testValidationErrors()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L110",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors",
+ "community": 743,
+ "norm_label": ".testvalidationerrors()"
+ },
+ {
+ "label": ".testNonAdminIsRejected()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L121",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected",
+ "community": 743,
+ "norm_label": ".testnonadminisrejected()"
+ },
+ {
+ "label": ".testImporterRoleCanImportButNothingElse()",
+ "file_type": "code",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L128",
+ "_origin": "ast",
+ "id": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse",
+ "community": 743,
+ "norm_label": ".testimporterrolecanimportbutnothingelse()"
+ },
{
"label": "RepositoryClassMappingTest.php",
"file_type": "code",
@@ -44690,7 +46030,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "doctrine_repositoryclassmappingtest",
- "community": 82,
+ "community": 759,
"norm_label": "repositoryclassmappingtest.php"
},
{
@@ -44700,7 +46040,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "doctrine_repositoryclassmappingtest_repositoryclassmappingtest",
- "community": 82,
+ "community": 759,
"norm_label": "repositoryclassmappingtest"
},
{
@@ -44710,7 +46050,7 @@
"source_location": "",
"_origin": "ast",
"id": "kerneltestcase",
- "community": 82,
+ "community": 759,
"norm_label": "kerneltestcase"
},
{
@@ -44720,7 +46060,7 @@
"source_location": "L20",
"_origin": "ast",
"id": "doctrine_repositoryclassmappingtest_repositoryclassmappingtest_testentitieswithcustomrepodeclareit",
- "community": 82,
+ "community": 759,
"norm_label": ".testentitieswithcustomrepodeclareit()"
},
{
@@ -44840,7 +46180,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "insurance_tenantinsurancecleanuptest",
- "community": 86,
+ "community": 169,
"norm_label": "tenantinsurancecleanuptest.php"
},
{
@@ -44850,7 +46190,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest",
- "community": 86,
+ "community": 169,
"norm_label": "tenantinsurancecleanuptest"
},
{
@@ -44860,7 +46200,7 @@
"source_location": "L18",
"_origin": "ast",
"id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest_testpurgeremovestenantinsurancepricingandcoverage",
- "community": 86,
+ "community": 169,
"norm_label": ".testpurgeremovestenantinsurancepricingandcoverage()"
},
{
@@ -44870,7 +46210,7 @@
"source_location": "L49",
"_origin": "ast",
"id": "insurance_tenantinsurancecleanuptest_tenantinsurancecleanuptest_testdeletedoctorendpointpurgesinsuranceconfig",
- "community": 86,
+ "community": 169,
"norm_label": ".testdeletedoctorendpointpurgesinsuranceconfig()"
},
{
@@ -45020,7 +46360,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "rating_commentlistnplusonetest",
- "community": 86,
+ "community": 767,
"norm_label": "commentlistnplusonetest.php"
},
{
@@ -45030,7 +46370,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "rating_commentlistnplusonetest_commentlistnplusonetest",
- "community": 86,
+ "community": 767,
"norm_label": "commentlistnplusonetest"
},
{
@@ -45040,7 +46380,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "rating_commentlistnplusonetest_commentlistnplusonetest_testtreeisserializedcorrectly",
- "community": 86,
+ "community": 767,
"norm_label": ".testtreeisserializedcorrectly()"
},
{
@@ -45050,7 +46390,7 @@
"source_location": "L52",
"_origin": "ast",
"id": "rating_commentlistnplusonetest_commentlistnplusonetest_jsonget",
- "community": 86,
+ "community": 767,
"norm_label": ".jsonget()"
},
{
@@ -45060,7 +46400,7 @@
"source_location": "L64",
"_origin": "ast",
"id": "rating_commentlistnplusonetest_commentlistnplusonetest_testrepositoryfetchjoinscollections",
- "community": 86,
+ "community": 767,
"norm_label": ".testrepositoryfetchjoinscollections()"
},
{
@@ -45330,7 +46670,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "secretary_secretarylistnplusonetest",
- "community": 748,
+ "community": 86,
"norm_label": "secretarylistnplusonetest.php"
},
{
@@ -45340,7 +46680,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest",
- "community": 748,
+ "community": 86,
"norm_label": "secretarylistnplusonetest"
},
{
@@ -45350,7 +46690,7 @@
"source_location": "L16",
"_origin": "ast",
"id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest_makedoctorwithsecretaries",
- "community": 748,
+ "community": 86,
"norm_label": ".makedoctorwithsecretaries()"
},
{
@@ -45360,7 +46700,7 @@
"source_location": "L32",
"_origin": "ast",
"id": "secretary_secretarylistnplusonetest_secretarylistnplusonetest_testquerycountdoesnotgrowwithsecretarycount",
- "community": 748,
+ "community": 86,
"norm_label": ".testquerycountdoesnotgrowwithsecretarycount()"
},
{
@@ -45370,7 +46710,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "settlement_financialbreakdownintegritytest",
- "community": 371,
+ "community": 86,
"norm_label": "financialbreakdownintegritytest.php"
},
{
@@ -45380,7 +46720,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "settlement_financialbreakdownintegritytest_financialbreakdownintegritytest",
- "community": 371,
+ "community": 86,
"norm_label": "financialbreakdownintegritytest"
},
{
@@ -45390,7 +46730,7 @@
"source_location": "L17",
"_origin": "ast",
"id": "settlement_financialbreakdownintegritytest_financialbreakdownintegritytest_testdeletingpaymentwithbreakdownisrestricted",
- "community": 371,
+ "community": 86,
"norm_label": ".testdeletingpaymentwithbreakdownisrestricted()"
},
{
@@ -45720,7 +47060,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "shared_dbloggertest",
- "community": 82,
+ "community": 759,
"norm_label": "dbloggertest.php"
},
{
@@ -45730,7 +47070,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "shared_dbloggertest_dbloggertest",
- "community": 82,
+ "community": 759,
"norm_label": "dbloggertest"
},
{
@@ -45740,7 +47080,7 @@
"source_location": "L15",
"_origin": "ast",
"id": "shared_dbloggertest_dbloggertest_testwarningpersistedbutinfoisnot",
- "community": 82,
+ "community": 759,
"norm_label": ".testwarningpersistedbutinfoisnot()"
},
{
@@ -45783,6 +47123,76 @@
"community": 275,
"norm_label": ".testmessagesresolve()"
},
+ {
+ "label": "PersianTextTest.php",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "shared_persiantexttest",
+ "community": 715,
+ "norm_label": "persiantexttest.php"
+ },
+ {
+ "label": "PersianTextTest",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L8",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest",
+ "community": 715,
+ "norm_label": "persiantexttest"
+ },
+ {
+ "label": ".testArabicYehAndKafAreUnified()",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L10",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified",
+ "community": 715,
+ "norm_label": ".testarabicyehandkafareunified()"
+ },
+ {
+ "label": ".testHalfSpaceAndExtraWhitespace()",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L15",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace",
+ "community": 715,
+ "norm_label": ".testhalfspaceandextrawhitespace()"
+ },
+ {
+ "label": ".testPersianAndArabicDigits()",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L20",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits",
+ "community": 715,
+ "norm_label": ".testpersianandarabicdigits()"
+ },
+ {
+ "label": ".testStripDoctorTitle()",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L26",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest_teststripdoctortitle",
+ "community": 715,
+ "norm_label": ".teststripdoctortitle()"
+ },
+ {
+ "label": ".testDifferentNamesStayDifferent()",
+ "file_type": "code",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L37",
+ "_origin": "ast",
+ "id": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent",
+ "community": 715,
+ "norm_label": ".testdifferentnamesstaydifferent()"
+ },
{
"label": "InfraSmokeTest.php",
"file_type": "code",
@@ -45790,7 +47200,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "smoke_infrasmoketest",
- "community": 744,
+ "community": 705,
"norm_label": "infrasmoketest.php"
},
{
@@ -45800,7 +47210,7 @@
"source_location": "L11",
"_origin": "ast",
"id": "smoke_infrasmoketest_infrasmoketest",
- "community": 744,
+ "community": 705,
"norm_label": "infrasmoketest"
},
{
@@ -45810,7 +47220,7 @@
"source_location": "L13",
"_origin": "ast",
"id": "smoke_infrasmoketest_infrasmoketest_testhealthispublicand200",
- "community": 744,
+ "community": 705,
"norm_label": ".testhealthispublicand200()"
},
{
@@ -45820,7 +47230,7 @@
"source_location": "L19",
"_origin": "ast",
"id": "smoke_infrasmoketest_infrasmoketest_testunauthenticatedapiis401",
- "community": 744,
+ "community": 705,
"norm_label": ".testunauthenticatedapiis401()"
},
{
@@ -45830,7 +47240,7 @@
"source_location": "L25",
"_origin": "ast",
"id": "smoke_infrasmoketest_infrasmoketest_testjwtauthreachesuserinfo",
- "community": 744,
+ "community": 705,
"norm_label": ".testjwtauthreachesuserinfo()"
},
{
@@ -45840,7 +47250,7 @@
"source_location": "L35",
"_origin": "ast",
"id": "smoke_infrasmoketest_infrasmoketest_testwalletusertypeindexexists",
- "community": 744,
+ "community": 705,
"norm_label": ".testwalletusertypeindexexists()"
},
{
@@ -51963,6 +53373,166 @@
"community": 432,
"norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645"
},
+ {
+ "label": "doctor-map-claim-captcha-delete.md",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete",
+ "community": 422,
+ "norm_label": "doctor-map-claim-captcha-delete.md"
+ },
+ {
+ "label": "\u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u062f\u0631 \u0627\u0641\u0632\u0648\u062f\u0646 \u0622\u062f\u0631\u0633 + \u06a9\u067e\u0686\u0627 \u0648 \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim + \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "community": 422,
+ "norm_label": "\u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u062f\u0631 \u0627\u0641\u0632\u0648\u062f\u0646 \u0627\u062f\u0631\u0633 + \u06a9\u067e\u0686\u0627 \u0648 \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim + \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9"
+ },
+ {
+ "label": "\u067e\u0631\u0648\u0698\u0647",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L3",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u067e\u0631\u0648\u0698\u0647",
+ "community": 422,
+ "norm_label": "\u067e\u0631\u0648\u0698\u0647"
+ },
+ {
+ "label": "\u0632\u0645\u06cc\u0646\u0647",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L8",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0632\u0645\u06cc\u0646\u0647",
+ "community": 422,
+ "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/doctor-map-claim-captcha-delete.md",
+ "source_location": "L15",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637",
+ "community": 422,
+ "norm_label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637"
+ },
+ {
+ "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u0647\u0646\u06af\u0627\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u0647\u0631 (\u0646\u06cc\u0627\u0632\u0650 \u062f\u0648\u200c\u0628\u0627\u0631 \u0627\u0646\u062a\u062e\u0627\u0628)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L26",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628",
+ "community": 422,
+ "norm_label": "\u0648\u0638\u06cc\u0641\u0647 \u06f1 \u2014 \u0631\u0641\u0639 \u0632\u0648\u0645 \u0646\u0642\u0634\u0647 \u0647\u0646\u06af\u0627\u0645 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u0647\u0631 (\u0646\u06cc\u0627\u0632 \u062f\u0648\u200c\u0628\u0627\u0631 \u0627\u0646\u062a\u062e\u0627\u0628)"
+ },
+ {
+ "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc",
+ "community": 422,
+ "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc"
+ },
+ {
+ "label": "\u0631\u06cc\u0634\u0647\u200c\u0647\u0627",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L49",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0631\u06cc\u0634\u0647_\u0647\u0627",
+ "community": 422,
+ "norm_label": "\u0631\u06cc\u0634\u0647\u200c\u0647\u0627"
+ },
+ {
+ "label": "\u0631\u0627\u0647\u200c\u062d\u0644",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L54",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644",
+ "community": 422,
+ "norm_label": "\u0631\u0627\u0647\u200c\u062d\u0644"
+ },
+ {
+ "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u06a9\u067e\u0686\u0627 \u0648 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L78",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim",
+ "community": 422,
+ "norm_label": "\u0648\u0638\u06cc\u0641\u0647 \u06f2 \u2014 \u06a9\u067e\u0686\u0627 \u0648 \u0641\u06cc\u0644\u062f \u0645\u0648\u0628\u0627\u06cc\u0644 \u062f\u0631 claim"
+ },
+ {
+ "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L80",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_80",
+ "community": 422,
+ "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc"
+ },
+ {
+ "label": "\u0631\u0627\u0647\u200c\u062d\u0644",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L84",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_84",
+ "community": 422,
+ "norm_label": "\u0631\u0627\u0647\u200c\u062d\u0644"
+ },
+ {
+ "label": "\u0648\u0638\u06cc\u0641\u0647 \u06f3 \u2014 \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L111",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "community": 422,
+ "norm_label": "\u0648\u0638\u06cc\u0641\u0647 \u06f3 \u2014 \u062d\u0630\u0641 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u0645\u0627\u0644\u06a9"
+ },
+ {
+ "label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L113",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_113",
+ "community": 422,
+ "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc"
+ },
+ {
+ "label": "\u0631\u0627\u0647\u200c\u062d\u0644",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L124",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_124",
+ "community": 422,
+ "norm_label": "\u0631\u0627\u0647\u200c\u062d\u0644"
+ },
+ {
+ "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645",
+ "file_type": "document",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L149",
+ "_origin": "ast",
+ "id": "prompt_doctor_map_claim_captcha_delete_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645",
+ "community": 422,
+ "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645"
+ },
{
"label": "doctor-profile-page.md",
"file_type": "document",
@@ -53463,6 +55033,126 @@
"community": 184,
"norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645"
},
+ {
+ "label": "fix-doctor-name-and-purge.md",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge",
+ "community": 481,
+ "norm_label": "fix-doctor-name-and-purge.md"
+ },
+ {
+ "label": "\u0631\u0641\u0639 \u0646\u0627\u0645 \u062f\u0648\u062a\u0627\u06cc\u06cc \u00ab\u062f\u06a9\u062a\u0631\u00bb \u062f\u0631 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a IRIMC + \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "community": 481,
+ "norm_label": "\u0631\u0641\u0639 \u0646\u0627\u0645 \u062f\u0648\u062a\u0627\u06cc\u06cc \u00ab\u062f\u06a9\u062a\u0631\u00bb \u062f\u0631 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a irimc + \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646"
+ },
+ {
+ "label": "\u067e\u0631\u0648\u0698\u0647",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L3",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u067e\u0631\u0648\u0698\u0647",
+ "community": 481,
+ "norm_label": "\u067e\u0631\u0648\u0698\u0647"
+ },
+ {
+ "label": "\u0632\u0645\u06cc\u0646\u0647",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L7",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0632\u0645\u06cc\u0646\u0647",
+ "community": 481,
+ "norm_label": "\u0632\u0645\u06cc\u0646\u0647"
+ },
+ {
+ "label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641",
+ "community": 481,
+ "norm_label": "\u0645\u0634\u06a9\u0644 / \u0647\u062f\u0641"
+ },
+ {
+ "label": "\u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L36",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637",
+ "community": 481,
+ "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/fix-doctor-name-and-purge.md",
+ "source_location": "L45",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc",
+ "community": 481,
+ "norm_label": "\u0648\u0636\u0639\u06cc\u062a \u0641\u0639\u0644\u06cc"
+ },
+ {
+ "label": "\u0648\u0638\u0627\u06cc\u0641",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L64",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641",
+ "community": 481,
+ "norm_label": "\u0648\u0638\u0627\u06cc\u0641"
+ },
+ {
+ "label": "\u06f1. \u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L66",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u06f1_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a",
+ "community": 481,
+ "norm_label": "\u06f1. \u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb \u0647\u0646\u06af\u0627\u0645 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a"
+ },
+ {
+ "label": "\u06f2. \u0627\u0635\u0644\u0627\u062d \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc IRIMC \u0645\u0648\u062c\u0648\u062f",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L85",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u06f2_\u0627\u0635\u0644\u0627\u062d_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_irimc_\u0645\u0648\u062c\u0648\u062f",
+ "community": 481,
+ "norm_label": "\u06f2. \u0627\u0635\u0644\u0627\u062d \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc irimc \u0645\u0648\u062c\u0648\u062f"
+ },
+ {
+ "label": "\u06f3. \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646 (\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0645\u06cc\u0632 \u062a\u0633\u062a)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L99",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u06f3_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0645\u06cc\u0632_\u062a\u0633\u062a",
+ "community": 481,
+ "norm_label": "\u06f3. \u062f\u0633\u062a\u0648\u0631 \u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u067e\u0632\u0634\u06a9\u0627\u0646 (\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0645\u06cc\u0632 \u062a\u0633\u062a)"
+ },
+ {
+ "label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645",
+ "file_type": "document",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L131",
+ "_origin": "ast",
+ "id": "prompt_fix_doctor_name_and_purge_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645",
+ "community": 481,
+ "norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645"
+ },
{
"label": "fix-doctor-schedule-fields.md",
"file_type": "document",
@@ -57073,6 +58763,286 @@
"community": 188,
"norm_label": "\u0646\u06a9\u0627\u062a \u0645\u0647\u0645"
},
+ {
+ "label": "irimc-import-complete.md",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete",
+ "community": 352,
+ "norm_label": "irimc-import-complete.md"
+ },
+ {
+ "label": "\u0641\u06cc\u0686\u0631 \u06a9\u0627\u0645\u0644 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc (IRIMC): \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u060c \u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644\u060c \u06a9\u0631\u0627\u0644\u0631 State-Based",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "community": 352,
+ "norm_label": "\u0641\u06cc\u0686\u0631 \u06a9\u0627\u0645\u0644 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc (irimc): \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u060c \u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644\u060c \u06a9\u0631\u0627\u0644\u0631 state-based"
+ },
+ {
+ "label": "\u067e\u0631\u0648\u0698\u0647\u200c\u0647\u0627 \u0648 \u0628\u0631\u0646\u0686",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L6",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u067e\u0631\u0648\u0698\u0647_\u0647\u0627_\u0648_\u0628\u0631\u0646\u0686",
+ "community": 352,
+ "norm_label": "\u067e\u0631\u0648\u0698\u0647\u200c\u0647\u0627 \u0648 \u0628\u0631\u0646\u0686"
+ },
+ {
+ "label": "\u06f1. \u0647\u062f\u0641 \u0641\u06cc\u0686\u0631",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f1_\u0647\u062f\u0641_\u0641\u06cc\u0686\u0631",
+ "community": 352,
+ "norm_label": "\u06f1. \u0647\u062f\u0641 \u0641\u06cc\u0686\u0631"
+ },
+ {
+ "label": "\u06f2. \u062a\u062d\u0644\u06cc\u0644 \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f \u2014 \u062d\u0642\u0627\u06cc\u0642 \u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u062f\u0648\u0628\u0627\u0631\u0647 \u06a9\u0634\u0641 \u0646\u06a9\u0646\u060c \u062f\u0648\u0628\u0627\u0631\u0647 \u0646\u0633\u0627\u0632)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L28",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632",
+ "community": 352,
+ "norm_label": "\u06f2. \u062a\u062d\u0644\u06cc\u0644 \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0648\u062c\u0648\u062f \u2014 \u062d\u0642\u0627\u06cc\u0642 \u062a\u0627\u06cc\u06cc\u062f\u0634\u062f\u0647 (\u062f\u0648\u0628\u0627\u0631\u0647 \u06a9\u0634\u0641 \u0646\u06a9\u0646\u060c \u062f\u0648\u0628\u0627\u0631\u0647 \u0646\u0633\u0627\u0632)"
+ },
+ {
+ "label": "\u06f2.\u06f1 \u0622\u0646\u0686\u0647 \u0627\u0632 \u0642\u0628\u0644 \u067e\u06cc\u0627\u062f\u0647 \u0634\u062f\u0647 \u0648 \u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u062f",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L30",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f2_\u06f1_\u0622\u0646\u0686\u0647_\u0627\u0632_\u0642\u0628\u0644_\u067e\u06cc\u0627\u062f\u0647_\u0634\u062f\u0647_\u0648_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u062f",
+ "community": 352,
+ "norm_label": "\u06f2.\u06f1 \u0627\u0646\u0686\u0647 \u0627\u0632 \u0642\u0628\u0644 \u067e\u06cc\u0627\u062f\u0647 \u0634\u062f\u0647 \u0648 \u06a9\u0627\u0631 \u0645\u06cc\u200c\u06a9\u0646\u062f"
+ },
+ {
+ "label": "\u06f2.\u06f2 \u0648\u0627\u06af\u0631\u0627\u06cc\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f-\u0628\u0627-\u06a9\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u067e\u0631\u0627\u0645\u067e\u062a \u062d\u0644 \u0645\u06cc\u200c\u06a9\u0646\u062f (\u062a\u0635\u0645\u06cc\u0645\u200c\u0647\u0627\u06cc \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0633\u062a\u0646\u062f)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L47",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f2_\u06f2_\u0648\u0627\u06af\u0631\u0627\u06cc\u06cc_\u0647\u0627\u06cc_\u0633\u0646\u062f_\u0628\u0627_\u06a9\u062f_\u06a9\u0647_\u0627\u06cc\u0646_\u067e\u0631\u0627\u0645\u067e\u062a_\u062d\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0633\u062a\u0646\u062f",
+ "community": 352,
+ "norm_label": "\u06f2.\u06f2 \u0648\u0627\u06af\u0631\u0627\u06cc\u06cc\u200c\u0647\u0627\u06cc \u0633\u0646\u062f-\u0628\u0627-\u06a9\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u067e\u0631\u0627\u0645\u067e\u062a \u062d\u0644 \u0645\u06cc\u200c\u06a9\u0646\u062f (\u062a\u0635\u0645\u06cc\u0645\u200c\u0647\u0627\u06cc \u0645\u0639\u0645\u0627\u0631\u06cc \u0645\u0633\u062a\u0646\u062f)"
+ },
+ {
+ "label": "\u06f3. Workstream A \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f clinicpro",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L60",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "community": 352,
+ "norm_label": "\u06f3. workstream a \u2014 \u0628\u06a9\u200c\u0627\u0646\u062f clinicpro"
+ },
+ {
+ "label": "\u06f3.\u06f1 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0645\u0646\u0637\u0642 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u0627\u0632 \u06a9\u0646\u062a\u0631\u0644\u0631 (thin controller)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L62",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0627\u0632_\u06a9\u0646\u062a\u0631\u0644\u0631_thin_controller",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f1 \u0627\u0633\u062a\u062e\u0631\u0627\u062c \u0645\u0646\u0637\u0642 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u0627\u0632 \u06a9\u0646\u062a\u0631\u0644\u0631 (thin controller)"
+ },
+ {
+ "label": "\u06f3.\u06f2 \u0646\u0642\u0634 `ROLE_UNCLAIMED_DOCTOR` \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u0627\u0646\u0634\u06cc\u0646",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L72",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f2_\u0646\u0642\u0634_role_unclaimed_doctor_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0646\u0634\u06cc\u0646",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f2 \u0646\u0642\u0634 `role_unclaimed_doctor` \u0628\u0631\u0627\u06cc \u06a9\u0627\u0631\u0628\u0631 \u062c\u0627\u0646\u0634\u06cc\u0646"
+ },
+ {
+ "label": "\u06f3.\u06f3 \u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc\u0650 \u06a9\u0644\u06cc\u062f \u0627\u06cc\u0645\u067e\u0648\u0631\u062a (\u0631\u0641\u0639 race)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L86",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f3_\u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc_\u06a9\u0644\u06cc\u062f_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0631\u0641\u0639_race",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f3 \u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc \u06a9\u0644\u06cc\u062f \u0627\u06cc\u0645\u067e\u0648\u0631\u062a (\u0631\u0641\u0639 race)"
+ },
+ {
+ "label": "\u06f3.\u06f4 \u062c\u0631\u06cc\u0627\u0646 Claim (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc) \u2014 \u0637\u0628\u0642 `climed.md`",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L104",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f4_\u062c\u0631\u06cc\u0627\u0646_claim_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc_\u0637\u0628\u0642_climed_md",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f4 \u062c\u0631\u06cc\u0627\u0646 claim (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u062a\u0648\u0633\u0637 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc) \u2014 \u0637\u0628\u0642 `climed.md`"
+ },
+ {
+ "label": "\u06f3.\u06f5 \u0627\u0646\u062a\u0642\u0627\u0644 \u062f\u0633\u062a\u06cc \u0627\u062f\u0645\u06cc\u0646 (\u0627\u0628\u0632\u0627\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L159",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f5_\u0627\u0646\u062a\u0642\u0627\u0644_\u062f\u0633\u062a\u06cc_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0628\u0632\u0627\u0631_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f5 \u0627\u0646\u062a\u0642\u0627\u0644 \u062f\u0633\u062a\u06cc \u0627\u062f\u0645\u06cc\u0646 (\u0627\u0628\u0632\u0627\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc)"
+ },
+ {
+ "label": "\u06f3.\u06f6 \u0641\u06cc\u0644\u062a\u0631 \u0627\u062f\u0645\u06cc\u0646 + \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L163",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f6_\u0641\u06cc\u0644\u062a\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f6 \u0641\u06cc\u0644\u062a\u0631 \u0627\u062f\u0645\u06cc\u0646 + \u0646\u0645\u0627\u06cc\u0634 \u0648\u0636\u0639\u06cc\u062a"
+ },
+ {
+ "label": "\u06f3.\u06f7 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u06a9\u0631\u0627\u0644\u0631 \u2014 \u06a9\u0645\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L169",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f7_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u06a9\u0631\u0627\u0644\u0631_\u06a9\u0645\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f7 \u0627\u062d\u0631\u0627\u0632 \u0647\u0648\u06cc\u062a \u06a9\u0631\u0627\u0644\u0631 \u2014 \u06a9\u0645\u06cc\u0646\u0647\u200c\u0633\u0627\u0632\u06cc \u062f\u0633\u062a\u0631\u0633\u06cc"
+ },
+ {
+ "label": "\u06f3.\u06f8 \u0645\u0633\u062a\u0646\u062f\u0627\u062a API (\u0642\u0627\u0646\u0648\u0646 \u067e\u0631\u0648\u0698\u0647 \u2014 \u0647\u0645\u0627\u0646 session)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L187",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f3_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_api_\u0642\u0627\u0646\u0648\u0646_\u067e\u0631\u0648\u0698\u0647_\u0647\u0645\u0627\u0646_session",
+ "community": 352,
+ "norm_label": "\u06f3.\u06f8 \u0645\u0633\u062a\u0646\u062f\u0627\u062a api (\u0642\u0627\u0646\u0648\u0646 \u067e\u0631\u0648\u0698\u0647 \u2014 \u0647\u0645\u0627\u0646 session)"
+ },
+ {
+ "label": "\u06f4. Workstream B \u2014 nobat724_front (\u062c\u0631\u06cc\u0627\u0646 Claim \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L196",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f4_workstream_b_nobat724_front_\u062c\u0631\u06cc\u0627\u0646_claim_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc",
+ "community": 352,
+ "norm_label": "\u06f4. workstream b \u2014 nobat724_front (\u062c\u0631\u06cc\u0627\u0646 claim \u062f\u0631 \u0633\u0627\u06cc\u062a \u0639\u0645\u0648\u0645\u06cc)"
+ },
+ {
+ "label": "\u06f5. Workstream C \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 clinicpro (visibility \u0639\u0645\u0644\u06cc\u0627\u062a\u06cc)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L217",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f5_workstream_c_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_clinicpro_visibility_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc",
+ "community": 352,
+ "norm_label": "\u06f5. workstream c \u2014 \u067e\u0646\u0644 \u0627\u062f\u0645\u06cc\u0646 clinicpro (visibility \u0639\u0645\u0644\u06cc\u0627\u062a\u06cc)"
+ },
+ {
+ "label": "\u06f6. Workstream D \u2014 \u06a9\u0631\u0627\u0644\u0631 (\u0637\u0628\u0642 `docs/scenarios/crawler.md`)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L229",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md",
+ "community": 352,
+ "norm_label": "\u06f6. workstream d \u2014 \u06a9\u0631\u0627\u0644\u0631 (\u0637\u0628\u0642 `docs/scenarios/crawler.md`)"
+ },
+ {
+ "label": "\u06f6.\u06f1 State \u062f\u0627\u062e\u0644\u06cc \u2192 SQLite (stdlib `sqlite3`\u060c \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u062c\u062f\u06cc\u062f \u0646\u0635\u0628 \u0646\u06a9\u0646)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L233",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f6_\u06f1_state_\u062f\u0627\u062e\u0644\u06cc_sqlite_stdlib_sqlite3_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u062c\u062f\u06cc\u062f_\u0646\u0635\u0628_\u0646\u06a9\u0646",
+ "community": 352,
+ "norm_label": "\u06f6.\u06f1 state \u062f\u0627\u062e\u0644\u06cc \u2192 sqlite (stdlib `sqlite3`\u060c \u0648\u0627\u0628\u0633\u062a\u06af\u06cc \u062c\u062f\u06cc\u062f \u0646\u0635\u0628 \u0646\u06a9\u0646)"
+ },
+ {
+ "label": "\u06f6.\u06f2 \u062a\u0631\u062a\u06cc\u0628 \u067e\u0631\u062f\u0627\u0632\u0634 (state machine)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L251",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f6_\u06f2_\u062a\u0631\u062a\u06cc\u0628_\u067e\u0631\u062f\u0627\u0632\u0634_state_machine",
+ "community": 352,
+ "norm_label": "\u06f6.\u06f2 \u062a\u0631\u062a\u06cc\u0628 \u067e\u0631\u062f\u0627\u0632\u0634 (state machine)"
+ },
+ {
+ "label": "\u06f6.\u06f3 \u067e\u0646\u0644 \u0648\u0628 \u062a\u0648\u06a9\u0646 (\u062a\u0648\u0633\u0639\u0647\u0654 `server.py` \u0645\u0648\u062c\u0648\u062f)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L259",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f6_\u06f3_\u067e\u0646\u0644_\u0648\u0628_\u062a\u0648\u06a9\u0646_\u062a\u0648\u0633\u0639\u0647_server_py_\u0645\u0648\u062c\u0648\u062f",
+ "community": 352,
+ "norm_label": "\u06f6.\u06f3 \u067e\u0646\u0644 \u0648\u0628 \u062a\u0648\u06a9\u0646 (\u062a\u0648\u0633\u0639\u0647 `server.py` \u0645\u0648\u062c\u0648\u062f)"
+ },
+ {
+ "label": "\u06f6.\u06f4 \u0642\u0648\u0627\u0639\u062f \u0633\u062e\u062a \u06a9\u0631\u0627\u0644\u0631",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L266",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f6_\u06f4_\u0642\u0648\u0627\u0639\u062f_\u0633\u062e\u062a_\u06a9\u0631\u0627\u0644\u0631",
+ "community": 352,
+ "norm_label": "\u06f6.\u06f4 \u0642\u0648\u0627\u0639\u062f \u0633\u062e\u062a \u06a9\u0631\u0627\u0644\u0631"
+ },
+ {
+ "label": "\u06f7. \u0645\u0627\u0644\u06a9\u06cc\u062a \u062f\u0627\u062f\u0647 \u2014 \u0633\u06cc\u0627\u0633\u062a \u0641\u06cc\u0644\u062f-\u0628\u0647-\u0641\u06cc\u0644\u062f (source of truth)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L275",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f7_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0633\u06cc\u0627\u0633\u062a_\u0641\u06cc\u0644\u062f_\u0628\u0647_\u0641\u06cc\u0644\u062f_source_of_truth",
+ "community": 352,
+ "norm_label": "\u06f7. \u0645\u0627\u0644\u06a9\u06cc\u062a \u062f\u0627\u062f\u0647 \u2014 \u0633\u06cc\u0627\u0633\u062a \u0641\u06cc\u0644\u062f-\u0628\u0647-\u0641\u06cc\u0644\u062f (source of truth)"
+ },
+ {
+ "label": "\u06f8. \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u062a\u0633\u062a (\u0627\u0644\u0632\u0627\u0645\u06cc\u061b suite\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u0633\u0628\u0632 \u0628\u0645\u0627\u0646\u0646\u062f)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L290",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f8_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u062a\u0633\u062a_\u0627\u0644\u0632\u0627\u0645\u06cc_suite\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0633\u0628\u0632_\u0628\u0645\u0627\u0646\u0646\u062f",
+ "community": 352,
+ "norm_label": "\u06f8. \u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc \u062a\u0633\u062a (\u0627\u0644\u0632\u0627\u0645\u06cc\u061b suite\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u0633\u0628\u0632 \u0628\u0645\u0627\u0646\u0646\u062f)"
+ },
+ {
+ "label": "\u06f9. Deployment / \u0639\u0645\u0644\u06cc\u0627\u062a",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L319",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f9_deployment_\u0639\u0645\u0644\u06cc\u0627\u062a",
+ "community": 352,
+ "norm_label": "\u06f9. deployment / \u0639\u0645\u0644\u06cc\u0627\u062a"
+ },
+ {
+ "label": "\u06f1\u06f0. \u0645\u0639\u06cc\u0627\u0631 \u067e\u0630\u06cc\u0631\u0634 (Definition of Done)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L329",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u06f1\u06f0_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634_definition_of_done",
+ "community": 352,
+ "norm_label": "\u06f1\u06f0. \u0645\u0639\u06cc\u0627\u0631 \u067e\u0630\u06cc\u0631\u0634 (definition of done)"
+ },
+ {
+ "label": "\u0641\u0631\u0636\u06cc\u0627\u062a \u0635\u0631\u06cc\u062d (\u0641\u0642\u0637 \u062c\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0634\u062a)",
+ "file_type": "document",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L338",
+ "_origin": "ast",
+ "id": "prompt_irimc_import_complete_\u0641\u0631\u0636\u06cc\u0627\u062a_\u0635\u0631\u06cc\u062d_\u0641\u0642\u0637_\u062c\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0634\u062a",
+ "community": 352,
+ "norm_label": "\u0641\u0631\u0636\u06cc\u0627\u062a \u0635\u0631\u06cc\u062d (\u0641\u0642\u0637 \u062c\u0627\u06cc\u06cc \u06a9\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0634\u062a)"
+ },
{
"label": "location-clinic-address.md",
"file_type": "document",
@@ -67030,7 +69000,7 @@
"source_location": "L55",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f1_\u0645\u0639\u0631\u0641\u06cc_\u0645\u062d\u0635\u0648\u0644",
- "community": 340,
+ "community": 543,
"norm_label": "\u06f1. \u0645\u0639\u0631\u0641\u06cc \u0645\u062d\u0635\u0648\u0644"
},
{
@@ -67040,7 +69010,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": 340,
+ "community": 543,
"norm_label": "\u06f1.\u06f1 \u0646\u0642\u0634\u200c\u0647\u0627\u06cc \u0633\u06cc\u0633\u062a\u0645"
},
{
@@ -67050,7 +69020,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": 340,
+ "community": 543,
"norm_label": "\u06f1.\u06f2 \u0641\u0644\u0648\u0647\u0627\u06cc \u0639\u0645\u0644\u06cc\u0627\u062a\u06cc \u0627\u0635\u0644\u06cc"
},
{
@@ -67060,7 +69030,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": 340,
+ "community": 543,
"norm_label": "\u062b\u0628\u062a\u200c\u0646\u0627\u0645 \u062f\u06a9\u062a\u0631 \u2014 \u0645\u0633\u062a\u0642\u0644"
},
{
@@ -67070,7 +69040,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": 340,
+ "community": 543,
"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"
},
{
@@ -67080,7 +69050,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": 340,
+ "community": 543,
"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"
},
{
@@ -67090,7 +69060,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": 340,
+ "community": 543,
"norm_label": "\u06f1.\u06f3 \u067e\u0644\u0646\u200c\u0647\u0627\u06cc \u0627\u0634\u062a\u0631\u0627\u06a9"
},
{
@@ -67100,7 +69070,7 @@
"source_location": "L111",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f1_\u06f4_\u0633\u06cc\u0633\u062a\u0645_\u067e\u06cc\u0627\u0645\u06a9",
- "community": 340,
+ "community": 543,
"norm_label": "\u06f1.\u06f4 \u0633\u06cc\u0633\u062a\u0645 \u067e\u06cc\u0627\u0645\u06a9"
},
{
@@ -67130,7 +69100,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": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2 \u0627\u0646\u0648\u0627\u0639 \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc (category types)"
},
{
@@ -67140,7 +69110,7 @@
"source_location": "L151",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f1_\u062a\u06af_tag",
- "community": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f1 \u062a\u06af (tag)"
},
{
@@ -67150,7 +69120,7 @@
"source_location": "L163",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f2_\u0627\u0633\u062a\u0627\u0646_state",
- "community": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f2 \u0627\u0633\u062a\u0627\u0646 (state)"
},
{
@@ -67160,7 +69130,7 @@
"source_location": "L175",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f2_\u06f3_\u0634\u0647\u0631_city",
- "community": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f3 \u0634\u0647\u0631 (city)"
},
{
@@ -67170,7 +69140,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": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f4 \u0628\u06cc\u0645\u0647 \u067e\u0627\u06cc\u0647 (basic insurance)"
},
{
@@ -67180,7 +69150,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": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f5 \u0628\u06cc\u0645\u0647 \u0645\u06a9\u0645\u0644 (supplementary insurance)"
},
{
@@ -67190,7 +69160,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": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f6 \u062a\u062e\u0635\u0635 \u062f\u06a9\u062a\u0631 (doctor specialty)"
},
{
@@ -67200,7 +69170,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": 352,
+ "community": 576,
"norm_label": "\u06f2.\u06f2.\u06f7 \u062e\u062f\u0645\u0627\u062a \u062f\u06a9\u062a\u0631 (doctor services)"
},
{
@@ -67260,7 +69230,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": 486,
+ "community": 766,
"norm_label": "\u06f2.\u06f8 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0648\u0628\u062a (appointment settings)"
},
{
@@ -67270,7 +69240,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": 486,
+ "community": 766,
"norm_label": "\u06f2.\u06f8.\u06f1 \u0628\u0631\u0646\u0627\u0645\u0647 \u0647\u0641\u062a\u06af\u06cc (weekly schedule)"
},
{
@@ -67280,7 +69250,7 @@
"source_location": "L373",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f8_\u06f2_\u062a\u0639\u0637\u06cc\u0644\u0627\u062a_holidays",
- "community": 486,
+ "community": 766,
"norm_label": "\u06f2.\u06f8.\u06f2 \u062a\u0639\u0637\u06cc\u0644\u0627\u062a (holidays)"
},
{
@@ -67290,7 +69260,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": 486,
+ "community": 766,
"norm_label": "\u06f2.\u06f8.\u06f3 \u0644\u063a\u0648 \u062a\u0639\u0637\u06cc\u0644 (date override)"
},
{
@@ -67300,7 +69270,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": 486,
+ "community": 766,
"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"
},
{
@@ -67370,7 +69340,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": 531,
+ "community": 770,
"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"
},
{
@@ -67380,7 +69350,7 @@
"source_location": "L526",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f1_\u0646\u0638\u0631_comment",
- "community": 531,
+ "community": 770,
"norm_label": "\u06f2.\u06f1\u06f3.\u06f1 \u0646\u0638\u0631 (comment)"
},
{
@@ -67390,7 +69360,7 @@
"source_location": "L539",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f2_\u0644\u0627\u06cc\u06a9_like",
- "community": 531,
+ "community": 770,
"norm_label": "\u06f2.\u06f1\u06f3.\u06f2 \u0644\u0627\u06cc\u06a9 (like)"
},
{
@@ -67400,7 +69370,7 @@
"source_location": "L550",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f2_\u06f1\u06f3_\u06f3_\u0627\u0645\u062a\u06cc\u0627\u0632_rate",
- "community": 531,
+ "community": 770,
"norm_label": "\u06f2.\u06f1\u06f3.\u06f3 \u0627\u0645\u062a\u06cc\u0627\u0632 (rate)"
},
{
@@ -67520,7 +69490,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": 528,
+ "community": 769,
"norm_label": "task-08: api \u062f\u0633\u062a\u0647\u200c\u0628\u0646\u062f\u06cc\u200c\u0647\u0627"
},
{
@@ -67530,7 +69500,7 @@
"source_location": "L650",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_get_api_v1_categories_states_\u0627\u0633\u062a\u0627\u0646_\u0647\u0627",
- "community": 528,
+ "community": 769,
"norm_label": "get /api/v1/categories/states \u2014 \u0627\u0633\u062a\u0627\u0646\u200c\u0647\u0627"
},
{
@@ -67540,7 +69510,7 @@
"source_location": "L659",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_get_api_v1_categories_cities_\u0634\u0647\u0631\u0647\u0627",
- "community": 528,
+ "community": 769,
"norm_label": "get /api/v1/categories/cities \u2014 \u0634\u0647\u0631\u0647\u0627"
},
{
@@ -67550,7 +69520,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": 528,
+ "community": 769,
"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"
},
{
@@ -67560,7 +69530,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": 526,
+ "community": 768,
"norm_label": "task-09: api \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0646\u0648\u0628\u062a"
},
{
@@ -67570,7 +69540,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": 526,
+ "community": 768,
"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"
},
{
@@ -67580,7 +69550,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": 526,
+ "community": 768,
"norm_label": "post /api/v1/appointment-settings/overrides \u2014 \u062b\u0628\u062a override \u062a\u0648\u0633\u0637 \u062f\u06a9\u062a\u0631"
},
{
@@ -67590,7 +69560,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": 526,
+ "community": 768,
"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)"
},
{
@@ -67600,7 +69570,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": 452,
+ "community": 763,
"norm_label": "\u06f4. \u0633\u06cc\u0633\u062a\u0645 \u062d\u0633\u0627\u0628 \u0648 \u0635\u0641 \u067e\u06cc\u0627\u0645\u06a9"
},
{
@@ -67610,7 +69580,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": 452,
+ "community": 763,
"norm_label": "\u06f4.\u06f1 \u062d\u0633\u0627\u0628 \u067e\u06cc\u0627\u0645\u06a9 (sms account)"
},
{
@@ -67620,7 +69590,7 @@
"source_location": "L721",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f4_\u06f2_\u0635\u0641_\u067e\u06cc\u0627\u0645\u06a9_sms_queue",
- "community": 452,
+ "community": 763,
"norm_label": "\u06f4.\u06f2 \u0635\u0641 \u067e\u06cc\u0627\u0645\u06a9 (sms queue)"
},
{
@@ -67630,7 +69600,7 @@
"source_location": "L737",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u06f4_\u06f3_api_\u067e\u06cc\u0627\u0645\u06a9",
- "community": 452,
+ "community": 763,
"norm_label": "\u06f4.\u06f3 api \u067e\u06cc\u0627\u0645\u06a9"
},
{
@@ -67640,7 +69610,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": 452,
+ "community": 763,
"norm_label": "post /api/v1/sms/queue \u2014 \u0627\u0641\u0632\u0648\u062f\u0646 \u0628\u0647 \u0635\u0641"
},
{
@@ -67650,7 +69620,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": 452,
+ "community": 763,
"norm_label": "get /api/v1/sms/balance \u2014 \u0645\u0648\u062c\u0648\u062f\u06cc \u062d\u0633\u0627\u0628 \u067e\u06cc\u0627\u0645\u06a9"
},
{
@@ -68920,7 +70890,7 @@
"source_location": "L3177",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_34_post_image_logo",
- "community": 737,
+ "community": 304,
"norm_label": "34. \ud83d\udd35 `post` image logo"
},
{
@@ -68930,7 +70900,7 @@
"source_location": "L3185",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3185",
- "community": 737,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -68940,7 +70910,7 @@
"source_location": "L3193",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3193",
- "community": 737,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69000,7 +70970,7 @@
"source_location": "L3250",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_36_get_get_my_rate",
- "community": 739,
+ "community": 304,
"norm_label": "36. \ud83d\udfe2 `get` get my rate"
},
{
@@ -69010,7 +70980,7 @@
"source_location": "L3260",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3260",
- "community": 739,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69020,7 +70990,7 @@
"source_location": "L3267",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3267",
- "community": 739,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69030,7 +71000,7 @@
"source_location": "L3275",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_37_post_post",
- "community": 677,
+ "community": 304,
"norm_label": "37. \ud83d\udd35 `post` post"
},
{
@@ -69040,7 +71010,7 @@
"source_location": "L3283",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3283",
- "community": 677,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69050,7 +71020,7 @@
"source_location": "L3290",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_request_body_3290",
- "community": 677,
+ "community": 304,
"norm_label": "request body"
},
{
@@ -69060,7 +71030,7 @@
"source_location": "L3302",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3302",
- "community": 677,
+ "community": 304,
"norm_label": "\u0645\u062b\u0627\u0644 request"
},
{
@@ -69070,7 +71040,7 @@
"source_location": "L3316",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3316",
- "community": 677,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69120,7 +71090,7 @@
"source_location": "L3354",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_39_patch_comment_confirmation",
- "community": 713,
+ "community": 304,
"norm_label": "39. \ud83d\udfe1 `patch` comment confirmation"
},
{
@@ -69130,7 +71100,7 @@
"source_location": "L3362",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3362",
- "community": 713,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69140,7 +71110,7 @@
"source_location": "L3369",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3369",
- "community": 713,
+ "community": 304,
"norm_label": "\u0645\u062b\u0627\u0644 request"
},
{
@@ -69150,7 +71120,7 @@
"source_location": "L3375",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3375",
- "community": 713,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69160,7 +71130,7 @@
"source_location": "L3383",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_40_post_post",
- "community": 728,
+ "community": 304,
"norm_label": "40. \ud83d\udd35 `post` post"
},
{
@@ -69170,7 +71140,7 @@
"source_location": "L3391",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3391",
- "community": 728,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69180,7 +71150,7 @@
"source_location": "L3398",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3398",
- "community": 728,
+ "community": 304,
"norm_label": "\u0645\u062b\u0627\u0644 request"
},
{
@@ -69190,7 +71160,7 @@
"source_location": "L3404",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3404",
- "community": 728,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69250,7 +71220,7 @@
"source_location": "L3461",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_42_delete_delete",
- "community": 740,
+ "community": 304,
"norm_label": "42. \ud83d\udd34 `delete` delete"
},
{
@@ -69260,7 +71230,7 @@
"source_location": "L3469",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3469",
- "community": 740,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69270,7 +71240,7 @@
"source_location": "L3476",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3476",
- "community": 740,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69280,7 +71250,7 @@
"source_location": "L3484",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_43_get_get",
- "community": 741,
+ "community": 304,
"norm_label": "43. \ud83d\udfe2 `get` get"
},
{
@@ -69290,7 +71260,7 @@
"source_location": "L3492",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3492",
- "community": 741,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69300,7 +71270,7 @@
"source_location": "L3498",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3498",
- "community": 741,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69310,7 +71280,7 @@
"source_location": "L3506",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_44_get_list_comment",
- "community": 729,
+ "community": 304,
"norm_label": "44. \ud83d\udfe2 `get` list comment"
},
{
@@ -69320,7 +71290,7 @@
"source_location": "L3514",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc_query_3514",
- "community": 729,
+ "community": 304,
"norm_label": "\u067e\u0627\u0631\u0627\u0645\u062a\u0631\u0647\u0627\u06cc query"
},
{
@@ -69330,7 +71300,7 @@
"source_location": "L3521",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3521",
- "community": 729,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69340,7 +71310,7 @@
"source_location": "L3528",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3528",
- "community": 729,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69350,7 +71320,7 @@
"source_location": "L3536",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_45_post_post",
- "community": 714,
+ "community": 304,
"norm_label": "45. \ud83d\udd35 `post` post"
},
{
@@ -69360,7 +71330,7 @@
"source_location": "L3544",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_3544",
- "community": 714,
+ "community": 304,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69370,7 +71340,7 @@
"source_location": "L3551",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_3551",
- "community": 714,
+ "community": 304,
"norm_label": "\u0645\u062b\u0627\u0644 request"
},
{
@@ -69380,7 +71350,7 @@
"source_location": "L3557",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_3557",
- "community": 714,
+ "community": 304,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -69960,7 +71930,7 @@
"source_location": "L3994",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_61_post_post",
- "community": 745,
+ "community": 27,
"norm_label": "61. \ud83d\udd35 `post` post"
},
{
@@ -69970,7 +71940,7 @@
"source_location": "L4002",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0647\u062f\u0631\u0647\u0627\u06cc_\u0627\u0636\u0627\u0641\u06cc_4002",
- "community": 745,
+ "community": 27,
"norm_label": "\u0647\u062f\u0631\u0647\u0627\u06cc \u0627\u0636\u0627\u0641\u06cc"
},
{
@@ -69980,7 +71950,7 @@
"source_location": "L4009",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_request_body_4009",
- "community": 745,
+ "community": 27,
"norm_label": "request body"
},
{
@@ -69990,7 +71960,7 @@
"source_location": "L4016",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u0645\u062b\u0627\u0644_request_4016",
- "community": 745,
+ "community": 27,
"norm_label": "\u0645\u062b\u0627\u0644 request"
},
{
@@ -70000,7 +71970,7 @@
"source_location": "L4025",
"_origin": "ast",
"id": "docs_clinicpro_manual_v2_\u067e\u0627\u0633\u062e_\u0647\u0627_4025",
- "community": 745,
+ "community": 27,
"norm_label": "\u067e\u0627\u0633\u062e\u200c\u0647\u0627"
},
{
@@ -73327,9 +75297,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L348",
+ "source_location": "L349",
"_origin": "ast",
- "id": "api_admin_response_200_348",
+ "id": "api_admin_response_200_349",
"community": 174,
"norm_label": "response `200`"
},
@@ -73337,7 +75307,7 @@
"label": "GET `/api/v1/admin/doctors/stats`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L368",
+ "source_location": "L369",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_doctors_stats",
"community": 174,
@@ -73347,9 +75317,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L374",
+ "source_location": "L375",
"_origin": "ast",
- "id": "api_admin_response_200_374",
+ "id": "api_admin_response_200_375",
"community": 174,
"norm_label": "response `200`"
},
@@ -73357,7 +75327,7 @@
"label": "POST `/api/v1/admin/doctors/{uuid}/status`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L391",
+ "source_location": "L392",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_doctors_uuid_status",
"community": 174,
@@ -73367,9 +75337,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L397",
+ "source_location": "L398",
"_origin": "ast",
- "id": "api_admin_response_200_397",
+ "id": "api_admin_response_200_398",
"community": 174,
"norm_label": "response `200`"
},
@@ -73377,7 +75347,7 @@
"label": "Clinic Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L404",
+ "source_location": "L405",
"_origin": "ast",
"id": "api_admin_clinic_management",
"community": 296,
@@ -73387,7 +75357,7 @@
"label": "GET `/api/v1/admin/clinics`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L406",
+ "source_location": "L407",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_clinics",
"community": 296,
@@ -73397,9 +75367,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L412",
+ "source_location": "L413",
"_origin": "ast",
- "id": "api_admin_query_parameters_412",
+ "id": "api_admin_query_parameters_413",
"community": 296,
"norm_label": "query parameters"
},
@@ -73407,9 +75377,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L420",
+ "source_location": "L421",
"_origin": "ast",
- "id": "api_admin_response_200_420",
+ "id": "api_admin_response_200_421",
"community": 296,
"norm_label": "response `200`"
},
@@ -73417,7 +75387,7 @@
"label": "PATCH `/api/v1/admin/clinic/{uuid}/status`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L440",
+ "source_location": "L441",
"_origin": "ast",
"id": "api_admin_patch_api_v1_admin_clinic_uuid_status",
"community": 296,
@@ -73427,9 +75397,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L446",
+ "source_location": "L447",
"_origin": "ast",
- "id": "api_admin_response_200_446",
+ "id": "api_admin_response_200_447",
"community": 296,
"norm_label": "response `200`"
},
@@ -73437,9 +75407,9 @@
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L451",
+ "source_location": "L452",
"_origin": "ast",
- "id": "api_admin_errors_451",
+ "id": "api_admin_errors_452",
"community": 296,
"norm_label": "errors"
},
@@ -73447,7 +75417,7 @@
"label": "DELETE `/api/v1/admin/clinic/{uuid}`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L458",
+ "source_location": "L459",
"_origin": "ast",
"id": "api_admin_delete_api_v1_admin_clinic_uuid",
"community": 296,
@@ -73457,9 +75427,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L466",
+ "source_location": "L467",
"_origin": "ast",
- "id": "api_admin_response_200_466",
+ "id": "api_admin_response_200_467",
"community": 296,
"norm_label": "response `200`"
},
@@ -73467,7 +75437,7 @@
"label": "Appointment Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L473",
+ "source_location": "L474",
"_origin": "ast",
"id": "api_admin_appointment_management",
"community": 250,
@@ -73477,7 +75447,7 @@
"label": "GET `/api/v1/admin/appointments/today-stats`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L475",
+ "source_location": "L476",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_appointments_today_stats",
"community": 250,
@@ -73487,9 +75457,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L481",
+ "source_location": "L482",
"_origin": "ast",
- "id": "api_admin_query_parameters_481",
+ "id": "api_admin_query_parameters_482",
"community": 250,
"norm_label": "query parameters"
},
@@ -73497,9 +75467,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L486",
+ "source_location": "L487",
"_origin": "ast",
- "id": "api_admin_response_200_486",
+ "id": "api_admin_response_200_487",
"community": 250,
"norm_label": "response `200`"
},
@@ -73507,7 +75477,7 @@
"label": "GET `/api/v1/admin/appointments`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L501",
+ "source_location": "L502",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_appointments",
"community": 250,
@@ -73517,9 +75487,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L507",
+ "source_location": "L508",
"_origin": "ast",
- "id": "api_admin_query_parameters_507",
+ "id": "api_admin_query_parameters_508",
"community": 250,
"norm_label": "query parameters"
},
@@ -73527,9 +75497,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L517",
+ "source_location": "L518",
"_origin": "ast",
- "id": "api_admin_response_200_517",
+ "id": "api_admin_response_200_518",
"community": 250,
"norm_label": "response `200`"
},
@@ -73537,7 +75507,7 @@
"label": "POST `/api/v1/admin/appointment`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L546",
+ "source_location": "L547",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_appointment",
"community": 250,
@@ -73547,7 +75517,7 @@
"label": "Request Body",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L552",
+ "source_location": "L553",
"_origin": "ast",
"id": "api_admin_request_body",
"community": 250,
@@ -73557,7 +75527,7 @@
"label": "Response `201`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L566",
+ "source_location": "L567",
"_origin": "ast",
"id": "api_admin_response_201",
"community": 250,
@@ -73567,7 +75537,7 @@
"label": "Error Responses",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L579",
+ "source_location": "L580",
"_origin": "ast",
"id": "api_admin_error_responses",
"community": 250,
@@ -73577,7 +75547,7 @@
"label": "Payment Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L588",
+ "source_location": "L589",
"_origin": "ast",
"id": "api_admin_payment_management",
"community": 657,
@@ -73587,7 +75557,7 @@
"label": "GET `/api/v1/admin/payments`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L590",
+ "source_location": "L591",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_payments",
"community": 657,
@@ -73597,9 +75567,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L596",
+ "source_location": "L597",
"_origin": "ast",
- "id": "api_admin_query_parameters_596",
+ "id": "api_admin_query_parameters_597",
"community": 657,
"norm_label": "query parameters"
},
@@ -73607,7 +75577,7 @@
"label": "Query Parameters (\u062a\u06a9\u0645\u06cc\u0644)",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L603",
+ "source_location": "L604",
"_origin": "ast",
"id": "api_admin_query_parameters_\u062a\u06a9\u0645\u06cc\u0644",
"community": 657,
@@ -73617,9 +75587,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L608",
+ "source_location": "L609",
"_origin": "ast",
- "id": "api_admin_response_200_608",
+ "id": "api_admin_response_200_609",
"community": 657,
"norm_label": "response `200`"
},
@@ -73627,7 +75597,7 @@
"label": "GET `/api/v1/admin/payments/{uuid}`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L632",
+ "source_location": "L633",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_payments_uuid",
"community": 657,
@@ -73637,9 +75607,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L638",
+ "source_location": "L639",
"_origin": "ast",
- "id": "api_admin_response_200_638",
+ "id": "api_admin_response_200_639",
"community": 657,
"norm_label": "response `200`"
},
@@ -73647,7 +75617,7 @@
"label": "POST `/api/v1/admin/payments/{uuid}/refund`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L662",
+ "source_location": "L663",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_payments_uuid_refund",
"community": 657,
@@ -73657,7 +75627,7 @@
"label": "POST `/api/v1/admin/payments/{uuid}/reverse`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L680",
+ "source_location": "L681",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_payments_uuid_reverse",
"community": 657,
@@ -73667,7 +75637,7 @@
"label": "Errors (payment refund/reverse/detail)",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L686",
+ "source_location": "L687",
"_origin": "ast",
"id": "api_admin_errors_payment_refund_reverse_detail",
"community": 657,
@@ -73677,7 +75647,7 @@
"label": "Settlement Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L694",
+ "source_location": "L695",
"_origin": "ast",
"id": "api_admin_settlement_management",
"community": 648,
@@ -73687,7 +75657,7 @@
"label": "GET `/api/v1/admin/settlements`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L696",
+ "source_location": "L697",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_settlements",
"community": 648,
@@ -73697,9 +75667,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L702",
+ "source_location": "L703",
"_origin": "ast",
- "id": "api_admin_query_parameters_702",
+ "id": "api_admin_query_parameters_703",
"community": 648,
"norm_label": "query parameters"
},
@@ -73707,9 +75677,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L709",
+ "source_location": "L710",
"_origin": "ast",
- "id": "api_admin_response_200_709",
+ "id": "api_admin_response_200_710",
"community": 648,
"norm_label": "response `200`"
},
@@ -73717,7 +75687,7 @@
"label": "Representation Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L731",
+ "source_location": "L732",
"_origin": "ast",
"id": "api_admin_representation_management",
"community": 692,
@@ -73727,7 +75697,7 @@
"label": "GET `/api/v1/admin/representations`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L733",
+ "source_location": "L734",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_representations",
"community": 692,
@@ -73737,9 +75707,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L739",
+ "source_location": "L740",
"_origin": "ast",
- "id": "api_admin_query_parameters_739",
+ "id": "api_admin_query_parameters_740",
"community": 692,
"norm_label": "query parameters"
},
@@ -73747,9 +75717,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L747",
+ "source_location": "L748",
"_origin": "ast",
- "id": "api_admin_response_200_747",
+ "id": "api_admin_response_200_748",
"community": 692,
"norm_label": "response `200`"
},
@@ -73757,7 +75727,7 @@
"label": "Secretary Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L775",
+ "source_location": "L776",
"_origin": "ast",
"id": "api_admin_secretary_management",
"community": 675,
@@ -73767,7 +75737,7 @@
"label": "GET `/api/v1/admin/secretaries`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L777",
+ "source_location": "L778",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_secretaries",
"community": 675,
@@ -73777,9 +75747,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L783",
+ "source_location": "L784",
"_origin": "ast",
- "id": "api_admin_query_parameters_783",
+ "id": "api_admin_query_parameters_784",
"community": 675,
"norm_label": "query parameters"
},
@@ -73787,9 +75757,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L790",
+ "source_location": "L791",
"_origin": "ast",
- "id": "api_admin_response_200_790",
+ "id": "api_admin_response_200_791",
"community": 675,
"norm_label": "response `200`"
},
@@ -73797,7 +75767,7 @@
"label": "Rating & Comment Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L795",
+ "source_location": "L796",
"_origin": "ast",
"id": "api_admin_rating_comment_management",
"community": 686,
@@ -73807,7 +75777,7 @@
"label": "GET `/api/v1/admin/rates`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L797",
+ "source_location": "L798",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_rates",
"community": 686,
@@ -73817,9 +75787,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L803",
+ "source_location": "L804",
"_origin": "ast",
- "id": "api_admin_query_parameters_803",
+ "id": "api_admin_query_parameters_804",
"community": 686,
"norm_label": "query parameters"
},
@@ -73827,7 +75797,7 @@
"label": "GET `/api/v1/admin/comments`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L814",
+ "source_location": "L815",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_comments",
"community": 686,
@@ -73837,9 +75807,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L820",
+ "source_location": "L821",
"_origin": "ast",
- "id": "api_admin_query_parameters_820",
+ "id": "api_admin_query_parameters_821",
"community": 686,
"norm_label": "query parameters"
},
@@ -73847,7 +75817,7 @@
"label": "SMS Management (Admin)",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L832",
+ "source_location": "L833",
"_origin": "ast",
"id": "api_admin_sms_management_admin",
"community": 391,
@@ -73857,7 +75827,7 @@
"label": "GET `/api/v1/admin/sms/logs`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L834",
+ "source_location": "L835",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_sms_logs",
"community": 391,
@@ -73867,9 +75837,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L840",
+ "source_location": "L841",
"_origin": "ast",
- "id": "api_admin_query_parameters_840",
+ "id": "api_admin_query_parameters_841",
"community": 391,
"norm_label": "query parameters"
},
@@ -73877,9 +75847,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L847",
+ "source_location": "L848",
"_origin": "ast",
- "id": "api_admin_response_200_847",
+ "id": "api_admin_response_200_848",
"community": 391,
"norm_label": "response `200`"
},
@@ -73887,7 +75857,7 @@
"label": "GET `/api/v1/admin/sms/templates`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L872",
+ "source_location": "L873",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_sms_templates",
"community": 391,
@@ -73897,9 +75867,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L878",
+ "source_location": "L879",
"_origin": "ast",
- "id": "api_admin_response_200_878",
+ "id": "api_admin_response_200_879",
"community": 391,
"norm_label": "response `200`"
},
@@ -73907,7 +75877,7 @@
"label": "Clinic Invitation Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L898",
+ "source_location": "L899",
"_origin": "ast",
"id": "api_admin_clinic_invitation_management",
"community": 201,
@@ -73917,7 +75887,7 @@
"label": "Settings",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L912",
+ "source_location": "L913",
"_origin": "ast",
"id": "api_admin_settings",
"community": 201,
@@ -73927,7 +75897,7 @@
"label": "GET /api/v1/admin/settings",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L914",
+ "source_location": "L915",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_settings",
"community": 201,
@@ -73937,7 +75907,7 @@
"label": "PATCH /api/v1/admin/settings",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L947",
+ "source_location": "L948",
"_origin": "ast",
"id": "api_admin_patch_api_v1_admin_settings",
"community": 201,
@@ -73947,47 +75917,47 @@
"label": "Pre-Registration Management",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L989",
+ "source_location": "L990",
"_origin": "ast",
"id": "api_admin_pre_registration_management",
- "community": 746,
+ "community": 201,
"norm_label": "pre-registration management"
},
{
"label": "GET `/api/v1/admin/pre-registrations`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L991",
+ "source_location": "L992",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_pre_registrations",
- "community": 746,
+ "community": 201,
"norm_label": "get `/api/v1/admin/pre-registrations`"
},
{
"label": "POST `/api/v1/admin/pre-registrations/{uuid}/approve`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1025",
+ "source_location": "L1026",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_pre_registrations_uuid_approve",
- "community": 746,
+ "community": 201,
"norm_label": "post `/api/v1/admin/pre-registrations/{uuid}/approve`"
},
{
"label": "POST `/api/v1/admin/pre-registrations/{uuid}/reject`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1043",
+ "source_location": "L1044",
"_origin": "ast",
"id": "api_admin_post_api_v1_admin_pre_registrations_uuid_reject",
- "community": 746,
+ "community": 201,
"norm_label": "post `/api/v1/admin/pre-registrations/{uuid}/reject`"
},
{
"label": "\u0645\u0648\u062a\u0648\u0631 \u0645\u0627\u0644\u06cc \u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1059",
+ "source_location": "L1060",
"_origin": "ast",
"id": "api_admin_\u0645\u0648\u062a\u0648\u0631_\u0645\u0627\u0644\u06cc_\u0646\u0645\u0627\u06cc\u0646\u062f\u06af\u06cc",
"community": 479,
@@ -73997,7 +75967,7 @@
"label": "GET `/api/v1/admin/financial-breakdowns`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1080",
+ "source_location": "L1081",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_financial_breakdowns",
"community": 479,
@@ -74007,7 +75977,7 @@
"label": "GET `/api/v1/admin/financial-summary`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1114",
+ "source_location": "L1115",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_financial_summary",
"community": 479,
@@ -74017,7 +75987,7 @@
"label": "GET `/api/v1/admin/settings/tax-history`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1132",
+ "source_location": "L1133",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_settings_tax_history",
"community": 479,
@@ -74027,7 +75997,7 @@
"label": "GET `/api/v1/admin/settlement/{uuid}`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1146",
+ "source_location": "L1147",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_settlement_uuid",
"community": 479,
@@ -74037,7 +76007,7 @@
"label": "Application Logs",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1172",
+ "source_location": "L1173",
"_origin": "ast",
"id": "api_admin_application_logs",
"community": 662,
@@ -74047,7 +76017,7 @@
"label": "GET `/api/v1/admin/logs`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1179",
+ "source_location": "L1180",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_logs",
"community": 662,
@@ -74057,9 +76027,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1185",
+ "source_location": "L1186",
"_origin": "ast",
- "id": "api_admin_query_parameters_1185",
+ "id": "api_admin_query_parameters_1186",
"community": 662,
"norm_label": "query parameters"
},
@@ -74067,9 +76037,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1197",
+ "source_location": "L1198",
"_origin": "ast",
- "id": "api_admin_response_200_1197",
+ "id": "api_admin_response_200_1198",
"community": 662,
"norm_label": "response `200`"
},
@@ -74077,7 +76047,7 @@
"label": "GET `/api/v1/admin/logs/export`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1220",
+ "source_location": "L1221",
"_origin": "ast",
"id": "api_admin_get_api_v1_admin_logs_export",
"community": 662,
@@ -74087,9 +76057,9 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1226",
+ "source_location": "L1227",
"_origin": "ast",
- "id": "api_admin_query_parameters_1226",
+ "id": "api_admin_query_parameters_1227",
"community": 662,
"norm_label": "query parameters"
},
@@ -74097,9 +76067,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1234",
+ "source_location": "L1235",
"_origin": "ast",
- "id": "api_admin_response_200_1234",
+ "id": "api_admin_response_200_1235",
"community": 662,
"norm_label": "response `200`"
},
@@ -74107,7 +76077,7 @@
"label": "DELETE `/api/v1/admin/logs`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1239",
+ "source_location": "L1240",
"_origin": "ast",
"id": "api_admin_delete_api_v1_admin_logs",
"community": 662,
@@ -74117,9 +76087,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1245",
+ "source_location": "L1246",
"_origin": "ast",
- "id": "api_admin_response_200_1245",
+ "id": "api_admin_response_200_1246",
"community": 662,
"norm_label": "response `200`"
},
@@ -74127,7 +76097,7 @@
"label": "Log Retention",
"file_type": "document",
"source_file": "docs/api/admin.md",
- "source_location": "L1252",
+ "source_location": "L1253",
"_origin": "ast",
"id": "api_admin_log_retention",
"community": 662,
@@ -74140,7 +76110,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "api_appointment_settings",
- "community": 160,
+ "community": 677,
"norm_label": "appointment-settings.md"
},
{
@@ -74150,7 +76120,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "api_appointment_settings_appointment_settings_api",
- "community": 160,
+ "community": 677,
"norm_label": "appointment settings api"
},
{
@@ -74600,7 +76570,7 @@
"source_location": "L547",
"_origin": "ast",
"id": "api_appointment_settings_slot_calculation_logic_reference",
- "community": 160,
+ "community": 677,
"norm_label": "slot calculation logic (reference)"
},
{
@@ -74610,7 +76580,7 @@
"source_location": "L572",
"_origin": "ast",
"id": "api_appointment_settings_available_locations",
- "community": 160,
+ "community": 677,
"norm_label": "available locations"
},
{
@@ -74620,7 +76590,7 @@
"source_location": "L574",
"_origin": "ast",
"id": "api_appointment_settings_get_api_v1_appointment_settings_available_locations_doctoruuid",
- "community": 160,
+ "community": 677,
"norm_label": "`get /api/v1/appointment-settings/available-locations/{doctoruuid}`"
},
{
@@ -74630,7 +76600,7 @@
"source_location": "L580",
"_origin": "ast",
"id": "api_appointment_settings_response_200_580",
- "community": 160,
+ "community": 677,
"norm_label": "response `200`"
},
{
@@ -74640,7 +76610,7 @@
"source_location": "L623",
"_origin": "ast",
"id": "api_appointment_settings_errors_623",
- "community": 160,
+ "community": 677,
"norm_label": "errors"
},
{
@@ -76360,7 +78330,7 @@
"source_location": "L67",
"_origin": "ast",
"id": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations",
- "community": 12,
+ "community": 706,
"norm_label": "get `/api/v1/admin/clinic/{uuid}/invitations`"
},
{
@@ -76370,7 +78340,7 @@
"source_location": "L73",
"_origin": "ast",
"id": "api_clinic_invitation_path_parameters_73",
- "community": 12,
+ "community": 706,
"norm_label": "path parameters"
},
{
@@ -76380,7 +78350,7 @@
"source_location": "L78",
"_origin": "ast",
"id": "api_clinic_invitation_query_parameters",
- "community": 12,
+ "community": 706,
"norm_label": "query parameters"
},
{
@@ -76390,7 +78360,7 @@
"source_location": "L84",
"_origin": "ast",
"id": "api_clinic_invitation_response_200",
- "community": 12,
+ "community": 706,
"norm_label": "response `200`"
},
{
@@ -76400,7 +78370,7 @@
"source_location": "L119",
"_origin": "ast",
"id": "api_clinic_invitation_errors_119",
- "community": 12,
+ "community": 706,
"norm_label": "errors"
},
{
@@ -77523,6 +79493,156 @@
"community": 136,
"norm_label": "response `200`"
},
+ {
+ "label": "doctor-claim.md",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "api_doctor_claim",
+ "community": 526,
+ "norm_label": "doctor-claim.md"
+ },
+ {
+ "label": "Doctor Profile Claim API (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u200c\u0634\u062f\u0647)",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "community": 526,
+ "norm_label": "doctor profile claim api (\u062a\u0635\u0627\u062d\u0628 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644 \u067e\u0632\u0634\u06a9 \u0627\u06cc\u0645\u067e\u0648\u0631\u062a\u200c\u0634\u062f\u0647)"
+ },
+ {
+ "label": "\u0686\u0631\u062e\u0647\u0654 \u0648\u0636\u0639\u06cc\u062a",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L12",
+ "_origin": "ast",
+ "id": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a",
+ "community": 526,
+ "norm_label": "\u0686\u0631\u062e\u0647 \u0648\u0636\u0639\u06cc\u062a"
+ },
+ {
+ "label": "GET `/api/v1/doctor/{uuid}/claim-info`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L25",
+ "_origin": "ast",
+ "id": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info",
+ "community": 526,
+ "norm_label": "get `/api/v1/doctor/{uuid}/claim-info`"
+ },
+ {
+ "label": "Response `200`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L29",
+ "_origin": "ast",
+ "id": "api_doctor_claim_response_200",
+ "community": 526,
+ "norm_label": "response `200`"
+ },
+ {
+ "label": "POST `/api/v1/doctor/{uuid}/claim`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L40",
+ "_origin": "ast",
+ "id": "api_doctor_claim_post_api_v1_doctor_uuid_claim",
+ "community": 526,
+ "norm_label": "post `/api/v1/doctor/{uuid}/claim`"
+ },
+ {
+ "label": "Request",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L46",
+ "_origin": "ast",
+ "id": "api_doctor_claim_request",
+ "community": 526,
+ "norm_label": "request"
+ },
+ {
+ "label": "\u0645\u0631\u0627\u062d\u0644 \u0633\u0631\u0648\u0631 (\u0627\u062a\u0645\u06cc\u06a9/\u0636\u062f race)",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L66",
+ "_origin": "ast",
+ "id": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race",
+ "community": 526,
+ "norm_label": "\u0645\u0631\u0627\u062d\u0644 \u0633\u0631\u0648\u0631 (\u0627\u062a\u0645\u06cc\u06a9/\u0636\u062f race)"
+ },
+ {
+ "label": "Response `200`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L78",
+ "_origin": "ast",
+ "id": "api_doctor_claim_response_200_78",
+ "community": 526,
+ "norm_label": "response `200`"
+ },
+ {
+ "label": "Errors",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L90",
+ "_origin": "ast",
+ "id": "api_doctor_claim_errors",
+ "community": 526,
+ "norm_label": "errors"
+ },
+ {
+ "label": "POST `/api/v1/admin/doctors/{uuid}/transfer`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L105",
+ "_origin": "ast",
+ "id": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer",
+ "community": 526,
+ "norm_label": "post `/api/v1/admin/doctors/{uuid}/transfer`"
+ },
+ {
+ "label": "GET `/api/v1/admin/doctor-claims`",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L113",
+ "_origin": "ast",
+ "id": "api_doctor_claim_get_api_v1_admin_doctor_claims",
+ "community": 526,
+ "norm_label": "get `/api/v1/admin/doctor-claims`"
+ },
+ {
+ "label": "Response `200` (paginated)",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L122",
+ "_origin": "ast",
+ "id": "api_doctor_claim_response_200_paginated",
+ "community": 526,
+ "norm_label": "response `200` (paginated)"
+ },
+ {
+ "label": "env \u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L146",
+ "_origin": "ast",
+ "id": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637",
+ "community": 526,
+ "norm_label": "env \u0647\u0627\u06cc \u0645\u0631\u062a\u0628\u0637"
+ },
+ {
+ "label": "\u062a\u0633\u062a\u200c\u0647\u0627",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L153",
+ "_origin": "ast",
+ "id": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627",
+ "community": 526,
+ "norm_label": "\u062a\u0633\u062a\u200c\u0647\u0627"
+ },
{
"label": "doctor-import.md",
"file_type": "document",
@@ -77547,7 +79667,7 @@
"label": "\u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a (\u0633\u062a\u0648\u0646\u200c\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f `doctors`)",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L17",
+ "source_location": "L18",
"_origin": "ast",
"id": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors",
"community": 256,
@@ -77557,7 +79677,7 @@
"label": "idempotency",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L31",
+ "source_location": "L32",
"_origin": "ast",
"id": "api_doctor_import_idempotency",
"community": 256,
@@ -77567,7 +79687,7 @@
"label": "Request",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L42",
+ "source_location": "L45",
"_origin": "ast",
"id": "api_doctor_import_request",
"community": 256,
@@ -77577,7 +79697,7 @@
"label": "Response",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L75",
+ "source_location": "L78",
"_origin": "ast",
"id": "api_doctor_import_response",
"community": 256,
@@ -77587,7 +79707,7 @@
"label": "`201 Created` (\u0633\u0627\u062e\u062a\u0647 \u0634\u062f)",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L77",
+ "source_location": "L80",
"_origin": "ast",
"id": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f",
"community": 256,
@@ -77597,7 +79717,7 @@
"label": "`200 OK` (\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0634\u062f)",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L82",
+ "source_location": "L85",
"_origin": "ast",
"id": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f",
"community": 256,
@@ -77607,7 +79727,7 @@
"label": "`200 OK` (\u0631\u062f \u0628\u0647\u200c\u062f\u0644\u06cc\u0644 \u062a\u0635\u0627\u062d\u0628\u200c\u0634\u062f\u0647)",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L87",
+ "source_location": "L90",
"_origin": "ast",
"id": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647",
"community": 256,
@@ -77617,7 +79737,7 @@
"label": "`422` (\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc)",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L92",
+ "source_location": "L95",
"_origin": "ast",
"id": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc",
"community": 256,
@@ -77627,22 +79747,72 @@
"label": "\u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L99",
+ "source_location": "L102",
"_origin": "ast",
"id": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
"community": 256,
"norm_label": "\u0639\u06a9\u0633 \u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
},
+ {
+ "label": "\u0627\u0646\u062a\u0642\u0627\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u0628\u0647 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L113",
+ "_origin": "ast",
+ "id": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc",
+ "community": 256,
+ "norm_label": "\u0627\u0646\u062a\u0642\u0627\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u0628\u0647 \u067e\u0632\u0634\u06a9 \u0648\u0627\u0642\u0639\u06cc"
+ },
{
"label": "\u06a9\u0627\u0631\u0628\u0631 \u0633\u06cc\u0633\u062a\u0645\u06cc \u0648 \u0686\u0631\u062e\u0647\u0654 \u0639\u0645\u0631",
"file_type": "document",
"source_file": "docs/api/doctor-import.md",
- "source_location": "L110",
+ "source_location": "L155",
"_origin": "ast",
"id": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
"community": 256,
"norm_label": "\u06a9\u0627\u0631\u0628\u0631 \u0633\u06cc\u0633\u062a\u0645\u06cc \u0648 \u0686\u0631\u062e\u0647 \u0639\u0645\u0631"
},
+ {
+ "label": "\u0644\u0627\u06af\u06cc\u0646 \u0633\u0631\u0648\u06cc\u0633\u06cc (captcha)",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L169",
+ "_origin": "ast",
+ "id": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha",
+ "community": 256,
+ "norm_label": "\u0644\u0627\u06af\u06cc\u0646 \u0633\u0631\u0648\u06cc\u0633\u06cc (captcha)"
+ },
+ {
+ "label": "backfill \u0646\u0642\u0634 \u062c\u0627\u0646\u0634\u06cc\u0646\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L183",
+ "_origin": "ast",
+ "id": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc",
+ "community": 256,
+ "norm_label": "backfill \u0646\u0642\u0634 \u062c\u0627\u0646\u0634\u06cc\u0646\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc"
+ },
+ {
+ "label": "\u0627\u0635\u0644\u0627\u062d \u0646\u0627\u0645 \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc (\u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb)",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L192",
+ "_origin": "ast",
+ "id": "api_doctor_import_\u0627\u0635\u0644\u0627\u062d_\u0646\u0627\u0645_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631",
+ "community": 256,
+ "norm_label": "\u0627\u0635\u0644\u0627\u062d \u0646\u0627\u0645 \u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc (\u062d\u0630\u0641 \u067e\u06cc\u0634\u0648\u0646\u062f \u00ab\u062f\u06a9\u062a\u0631\u00bb)"
+ },
+ {
+ "label": "\u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a",
+ "file_type": "document",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L201",
+ "_origin": "ast",
+ "id": "api_doctor_import_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a",
+ "community": 256,
+ "norm_label": "\u067e\u0627\u06a9\u200c\u0633\u0627\u0632\u06cc \u06a9\u0627\u0645\u0644 \u0628\u0631\u0627\u06cc \u062f\u06cc\u062a\u0627\u0628\u06cc\u0633 \u062a\u0633\u062a"
+ },
{
"label": "doctor-service.md",
"file_type": "document",
@@ -77887,87 +80057,87 @@
"label": "POST `/api/v1/doctor`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L9",
+ "source_location": "L13",
"_origin": "ast",
"id": "api_doctor_post_api_v1_doctor",
- "community": 690,
+ "community": 333,
"norm_label": "post `/api/v1/doctor`"
},
{
"label": "Request Body (`application/json`)",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L15",
+ "source_location": "L19",
"_origin": "ast",
"id": "api_doctor_request_body_application_json",
- "community": 690,
+ "community": 333,
"norm_label": "request body (`application/json`)"
},
{
"label": "Response `201`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L39",
+ "source_location": "L43",
"_origin": "ast",
"id": "api_doctor_response_201",
- "community": 690,
+ "community": 333,
"norm_label": "response `201`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L59",
+ "source_location": "L63",
"_origin": "ast",
"id": "api_doctor_errors",
- "community": 690,
+ "community": 333,
"norm_label": "errors"
},
{
"label": "GET `/api/v1/doctor/{uuid}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L68",
+ "source_location": "L72",
"_origin": "ast",
"id": "api_doctor_get_api_v1_doctor_uuid",
- "community": 693,
+ "community": 333,
"norm_label": "get `/api/v1/doctor/{uuid}`"
},
{
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L74",
+ "source_location": "L78",
"_origin": "ast",
"id": "api_doctor_path_parameters",
- "community": 693,
+ "community": 333,
"norm_label": "path parameters"
},
{
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L79",
+ "source_location": "L83",
"_origin": "ast",
"id": "api_doctor_response_200",
- "community": 693,
+ "community": 333,
"norm_label": "response `200`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L117",
+ "source_location": "L122",
"_origin": "ast",
- "id": "api_doctor_errors_117",
- "community": 693,
+ "id": "api_doctor_errors_122",
+ "community": 333,
"norm_label": "errors"
},
{
"label": "GET `/api/v1/clinic/my-doctor/{doctorUuid}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L124",
+ "source_location": "L129",
"_origin": "ast",
"id": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid",
"community": 633,
@@ -77977,9 +80147,9 @@
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L130",
+ "source_location": "L135",
"_origin": "ast",
- "id": "api_doctor_path_parameters_130",
+ "id": "api_doctor_path_parameters_135",
"community": 633,
"norm_label": "path parameters"
},
@@ -77987,9 +80157,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L135",
+ "source_location": "L140",
"_origin": "ast",
- "id": "api_doctor_response_200_135",
+ "id": "api_doctor_response_200_140",
"community": 633,
"norm_label": "response `200`"
},
@@ -77997,9 +80167,9 @@
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L154",
+ "source_location": "L159",
"_origin": "ast",
- "id": "api_doctor_errors_154",
+ "id": "api_doctor_errors_159",
"community": 633,
"norm_label": "errors"
},
@@ -78007,7 +80177,7 @@
"label": "Schedule Fields Notes",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L162",
+ "source_location": "L167",
"_origin": "ast",
"id": "api_doctor_schedule_fields_notes",
"community": 633,
@@ -78017,7 +80187,7 @@
"label": "GET `/api/v1/doctors`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L174",
+ "source_location": "L179",
"_origin": "ast",
"id": "api_doctor_get_api_v1_doctors",
"community": 333,
@@ -78027,7 +80197,7 @@
"label": "Query Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L180",
+ "source_location": "L185",
"_origin": "ast",
"id": "api_doctor_query_parameters",
"community": 333,
@@ -78037,9 +80207,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L191",
+ "source_location": "L196",
"_origin": "ast",
- "id": "api_doctor_response_200_191",
+ "id": "api_doctor_response_200_196",
"community": 333,
"norm_label": "response `200`"
},
@@ -78047,7 +80217,7 @@
"label": "PATCH `/api/v1/doctor/{uuid}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L220",
+ "source_location": "L226",
"_origin": "ast",
"id": "api_doctor_patch_api_v1_doctor_uuid",
"community": 671,
@@ -78057,9 +80227,9 @@
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L226",
+ "source_location": "L232",
"_origin": "ast",
- "id": "api_doctor_path_parameters_226",
+ "id": "api_doctor_path_parameters_232",
"community": 671,
"norm_label": "path parameters"
},
@@ -78067,9 +80237,9 @@
"label": "Request Body (`application/json`)",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L231",
+ "source_location": "L237",
"_origin": "ast",
- "id": "api_doctor_request_body_application_json_231",
+ "id": "api_doctor_request_body_application_json_237",
"community": 671,
"norm_label": "request body (`application/json`)"
},
@@ -78077,9 +80247,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L250",
+ "source_location": "L256",
"_origin": "ast",
- "id": "api_doctor_response_200_250",
+ "id": "api_doctor_response_200_256",
"community": 671,
"norm_label": "response `200`"
},
@@ -78087,9 +80257,9 @@
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L253",
+ "source_location": "L259",
"_origin": "ast",
- "id": "api_doctor_errors_253",
+ "id": "api_doctor_errors_259",
"community": 671,
"norm_label": "errors"
},
@@ -78097,207 +80267,207 @@
"label": "DELETE `/api/v1/doctor/{uuid}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L262",
+ "source_location": "L268",
"_origin": "ast",
"id": "api_doctor_delete_api_v1_doctor_uuid",
- "community": 687,
+ "community": 333,
"norm_label": "delete `/api/v1/doctor/{uuid}`"
},
{
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L272",
+ "source_location": "L278",
"_origin": "ast",
- "id": "api_doctor_path_parameters_272",
- "community": 687,
+ "id": "api_doctor_path_parameters_278",
+ "community": 333,
"norm_label": "path parameters"
},
{
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L277",
+ "source_location": "L283",
"_origin": "ast",
- "id": "api_doctor_response_200_277",
- "community": 687,
+ "id": "api_doctor_response_200_283",
+ "community": 333,
"norm_label": "response `200`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L285",
+ "source_location": "L291",
"_origin": "ast",
- "id": "api_doctor_errors_285",
- "community": 687,
+ "id": "api_doctor_errors_291",
+ "community": 333,
"norm_label": "errors"
},
{
"label": "POST `/file/upload/clinic_pro/doctor/field_image`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L295",
+ "source_location": "L301",
"_origin": "ast",
"id": "api_doctor_post_file_upload_clinic_pro_doctor_field_image",
- "community": 700,
+ "community": 333,
"norm_label": "post `/file/upload/clinic_pro/doctor/field_image`"
},
{
"label": "Request",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L301",
+ "source_location": "L307",
"_origin": "ast",
"id": "api_doctor_request",
- "community": 700,
+ "community": 333,
"norm_label": "request"
},
{
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L308",
+ "source_location": "L314",
"_origin": "ast",
- "id": "api_doctor_response_200_308",
- "community": 700,
+ "id": "api_doctor_response_200_314",
+ "community": 333,
"norm_label": "response `200`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L322",
+ "source_location": "L328",
"_origin": "ast",
- "id": "api_doctor_errors_322",
- "community": 700,
+ "id": "api_doctor_errors_328",
+ "community": 333,
"norm_label": "errors"
},
{
"label": "GET `/api/v1/clinic-pro/doctor-addresses/{doctorId}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L330",
+ "source_location": "L336",
"_origin": "ast",
"id": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid",
- "community": 712,
+ "community": 333,
"norm_label": "get `/api/v1/clinic-pro/doctor-addresses/{doctorid}`"
},
{
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L336",
+ "source_location": "L342",
"_origin": "ast",
- "id": "api_doctor_path_parameters_336",
- "community": 712,
+ "id": "api_doctor_path_parameters_342",
+ "community": 333,
"norm_label": "path parameters"
},
{
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L341",
+ "source_location": "L347",
"_origin": "ast",
- "id": "api_doctor_response_200_341",
- "community": 712,
+ "id": "api_doctor_response_200_347",
+ "community": 333,
"norm_label": "response `200`"
},
{
"label": "POST `/api/v1/clinic-pro/doctor-address`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L380",
+ "source_location": "L386",
"_origin": "ast",
"id": "api_doctor_post_api_v1_clinic_pro_doctor_address",
- "community": 705,
+ "community": 333,
"norm_label": "post `/api/v1/clinic-pro/doctor-address`"
},
{
"label": "Request Body",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L386",
+ "source_location": "L392",
"_origin": "ast",
"id": "api_doctor_request_body",
- "community": 705,
+ "community": 333,
"norm_label": "request body"
},
{
"label": "Response `201`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L409",
+ "source_location": "L415",
"_origin": "ast",
- "id": "api_doctor_response_201_409",
- "community": 705,
+ "id": "api_doctor_response_201_415",
+ "community": 333,
"norm_label": "response `201`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L424",
+ "source_location": "L430",
"_origin": "ast",
- "id": "api_doctor_errors_424",
- "community": 705,
+ "id": "api_doctor_errors_430",
+ "community": 333,
"norm_label": "errors"
},
{
"label": "PATCH `/api/v1/clinic-pro/doctor-address/{id}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L433",
+ "source_location": "L439",
"_origin": "ast",
"id": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
- "community": 496,
+ "community": 333,
"norm_label": "patch `/api/v1/clinic-pro/doctor-address/{id}`"
},
{
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L439",
+ "source_location": "L445",
"_origin": "ast",
- "id": "api_doctor_path_parameters_439",
- "community": 496,
+ "id": "api_doctor_path_parameters_445",
+ "community": 333,
"norm_label": "path parameters"
},
{
"label": "Request Body",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L444",
+ "source_location": "L450",
"_origin": "ast",
- "id": "api_doctor_request_body_444",
- "community": 496,
+ "id": "api_doctor_request_body_450",
+ "community": 333,
"norm_label": "request body"
},
{
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L447",
+ "source_location": "L453",
"_origin": "ast",
- "id": "api_doctor_response_200_447",
- "community": 496,
+ "id": "api_doctor_response_200_453",
+ "community": 333,
"norm_label": "response `200`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L450",
+ "source_location": "L456",
"_origin": "ast",
- "id": "api_doctor_errors_450",
- "community": 496,
+ "id": "api_doctor_errors_456",
+ "community": 333,
"norm_label": "errors"
},
{
"label": "DELETE `/api/v1/clinic-pro/doctor-address/{id}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L459",
+ "source_location": "L465",
"_origin": "ast",
"id": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id",
"community": 333,
@@ -78307,9 +80477,9 @@
"label": "Response `200`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L465",
+ "source_location": "L471",
"_origin": "ast",
- "id": "api_doctor_response_200_465",
+ "id": "api_doctor_response_200_471",
"community": 333,
"norm_label": "response `200`"
},
@@ -78317,9 +80487,9 @@
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L470",
+ "source_location": "L476",
"_origin": "ast",
- "id": "api_doctor_errors_470",
+ "id": "api_doctor_errors_476",
"community": 333,
"norm_label": "errors"
},
@@ -78327,40 +80497,40 @@
"label": "POST `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicUuid}`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L479",
+ "source_location": "L485",
"_origin": "ast",
"id": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid",
- "community": 706,
+ "community": 333,
"norm_label": "post `/api/v1/clinic-pro/doctor-address/from-clinic/{clinicuuid}`"
},
{
"label": "Path Parameters",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L485",
+ "source_location": "L491",
"_origin": "ast",
- "id": "api_doctor_path_parameters_485",
- "community": 706,
+ "id": "api_doctor_path_parameters_491",
+ "community": 333,
"norm_label": "path parameters"
},
{
"label": "Response `201`",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L490",
+ "source_location": "L496",
"_origin": "ast",
- "id": "api_doctor_response_201_490",
- "community": 706,
+ "id": "api_doctor_response_201_496",
+ "community": 333,
"norm_label": "response `201`"
},
{
"label": "Errors",
"file_type": "document",
"source_file": "docs/api/doctor.md",
- "source_location": "L493",
+ "source_location": "L499",
"_origin": "ast",
- "id": "api_doctor_errors_493",
- "community": 706,
+ "id": "api_doctor_errors_499",
+ "community": 333,
"norm_label": "errors"
},
{
@@ -81770,7 +83940,7 @@
"source_location": "L260",
"_origin": "ast",
"id": "api_sms_post_api_v1_admin_sms_template_uuid_approve",
- "community": 715,
+ "community": 771,
"norm_label": "post `/api/v1/admin/sms/template/{uuid}/approve`"
},
{
@@ -81780,7 +83950,7 @@
"source_location": "L266",
"_origin": "ast",
"id": "api_sms_request_body_application_json_266",
- "community": 715,
+ "community": 771,
"norm_label": "request body (`application/json`)"
},
{
@@ -81790,7 +83960,7 @@
"source_location": "L279",
"_origin": "ast",
"id": "api_sms_response_200_279",
- "community": 715,
+ "community": 771,
"norm_label": "response `200`"
},
{
@@ -82040,7 +84210,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "api_specialty",
- "community": 62,
+ "community": 274,
"norm_label": "specialty.md"
},
{
@@ -82520,7 +84690,7 @@
"source_location": "L1",
"_origin": "ast",
"id": "api_tag",
- "community": 274,
+ "community": 102,
"norm_label": "tag.md"
},
{
@@ -86893,6 +89063,26 @@
"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": "climed.md",
+ "file_type": "document",
+ "source_file": "docs/scenarios/climed.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "scenarios_climed",
+ "community": 755,
+ "norm_label": "climed.md"
+ },
+ {
+ "label": "crawler.md",
+ "file_type": "document",
+ "source_file": "docs/scenarios/crawler.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "scenarios_crawler",
+ "community": 756,
+ "norm_label": "crawler.md"
+ },
{
"label": "irimc-doctor-import-ownership.md",
"file_type": "document",
@@ -87143,6 +89333,116 @@
"community": 71,
"norm_label": "\u06f1\u06f4. \u0645\u0631\u062c\u0639 \u0646\u0645\u0648\u0646\u0647\u200c\u06cc \u062f\u0627\u062f\u0647"
},
+ {
+ "label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc",
+ "community": 606,
+ "norm_label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md"
+ },
+ {
+ "label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc \u0628\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9\u200c\u067e\u0631\u0648 \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L1",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "community": 606,
+ "norm_label": "\u0627\u06cc\u0645\u067e\u0648\u0631\u062a \u067e\u0632\u0634\u06a9\u0627\u0646 \u0646\u0638\u0627\u0645 \u067e\u0632\u0634\u06a9\u06cc \u0628\u0647 \u06a9\u0644\u06cc\u0646\u06cc\u06a9\u200c\u067e\u0631\u0648 \u0648 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
+ },
+ {
+ "label": "\u06f1. \u0645\u0633\u0626\u0644\u0647 \u0648 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a\u200c\u0647\u0627",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L9",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f1_\u0645\u0633\u0626\u0644\u0647_\u0648_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627",
+ "community": 606,
+ "norm_label": "\u06f1. \u0645\u0633\u064a\u0644\u0647 \u0648 \u0645\u062d\u062f\u0648\u062f\u06cc\u062a\u200c\u0647\u0627"
+ },
+ {
+ "label": "\u06f2. \u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L22",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f2_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "community": 606,
+ "norm_label": "\u06f2. \u0645\u062f\u0644 \u0645\u0627\u0644\u06a9\u06cc\u062a \u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
+ },
+ {
+ "label": "\u06f3. \u0631\u0627\u0647\u200c\u062d\u0644 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u062f\u0644\u06cc\u0644 \u0622\u0646",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L32",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f3_\u0631\u0627\u0647_\u062d\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u062f\u0644\u06cc\u0644_\u0622\u0646",
+ "community": 606,
+ "norm_label": "\u06f3. \u0631\u0627\u0647\u200c\u062d\u0644 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647 \u0648 \u062f\u0644\u06cc\u0644 \u0627\u0646"
+ },
+ {
+ "label": "\u06f4. \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u06a9\u200c\u0627\u0646\u062f (clinicpro)",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L42",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f4_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "community": 606,
+ "norm_label": "\u06f4. \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u06a9\u200c\u0627\u0646\u062f (clinicpro)"
+ },
+ {
+ "label": "\u06f5. \u062c\u0631\u06cc\u0627\u0646 \u06a9\u0631\u0627\u0644\u0631 (pipeline.py)",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L66",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f5_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0631\u0627\u0644\u0631_pipeline_py",
+ "community": 606,
+ "norm_label": "\u06f5. \u062c\u0631\u06cc\u0627\u0646 \u06a9\u0631\u0627\u0644\u0631 (pipeline.py)"
+ },
+ {
+ "label": "\u06f6. \u0646\u062d\u0648\u0647\u200c\u06cc \u0627\u062c\u0631\u0627",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L82",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f6_\u0646\u062d\u0648\u0647_\u06cc_\u0627\u062c\u0631\u0627",
+ "community": 606,
+ "norm_label": "\u06f6. \u0646\u062d\u0648\u0647\u200c\u06cc \u0627\u062c\u0631\u0627"
+ },
+ {
+ "label": "\u06f7. \u0646\u06a9\u062a\u0647\u200c\u06cc \u0645\u0647\u0645: captcha \u062f\u0631 \u0644\u0627\u06af\u06cc\u0646",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L110",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f7_\u0646\u06a9\u062a\u0647_\u06cc_\u0645\u0647\u0645_captcha_\u062f\u0631_\u0644\u0627\u06af\u06cc\u0646",
+ "community": 606,
+ "norm_label": "\u06f7. \u0646\u06a9\u062a\u0647\u200c\u06cc \u0645\u0647\u0645: captcha \u062f\u0631 \u0644\u0627\u06af\u06cc\u0646"
+ },
+ {
+ "label": "\u06f8. \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0633\u0627\u062e\u062a\u0647/\u062a\u063a\u06cc\u06cc\u0631\u200c\u06cc\u0627\u0641\u062a\u0647",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L120",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f8_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0633\u0627\u062e\u062a\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u06cc\u0627\u0641\u062a\u0647",
+ "community": 606,
+ "norm_label": "\u06f8. \u0641\u0627\u06cc\u0644\u200c\u0647\u0627\u06cc \u0633\u0627\u062e\u062a\u0647/\u062a\u063a\u06cc\u06cc\u0631\u200c\u06cc\u0627\u0641\u062a\u0647"
+ },
+ {
+ "label": "\u06f9. \u0645\u0631\u0627\u062d\u0644 \u0628\u0639\u062f\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc",
+ "file_type": "document",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L134",
+ "_origin": "ast",
+ "id": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f9_\u0645\u0631\u0627\u062d\u0644_\u0628\u0639\u062f\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc",
+ "community": 606,
+ "norm_label": "\u06f9. \u0645\u0631\u0627\u062d\u0644 \u0628\u0639\u062f\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc"
+ },
{
"label": "security-audit.md",
"file_type": "document",
@@ -94100,6 +96400,17 @@
"source": "admin_app",
"target": "pages_dashboardpage"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/App.tsx",
+ "source_location": "L42",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "admin_app",
+ "target": "pages_doctorclaimspage"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -96363,6 +98674,17 @@
"source": "pages_commentspage",
"target": "ui_datatable"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "ui_datatable"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -96546,6 +98868,17 @@
"source": "pages_commentspage",
"target": "ui_datatable_column"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "ui_datatable_column"
+ },
{
"relation": "imports",
"context": "import",
@@ -97089,6 +99422,17 @@
"source": "pages_clinicservicespage",
"target": "ui_modal"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "ui_modal"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -97327,6 +99671,17 @@
"source": "pages_clinicservicespage",
"target": "ui_modal_modal"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "ui_modal_modal"
+ },
{
"relation": "imports",
"context": "import",
@@ -97838,6 +100193,17 @@
"source": "pages_commentspage",
"target": "ui_pagination"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "ui_pagination"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -100285,6 +102651,17 @@
"source": "pages_dashboardpage",
"target": "lib_api"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_api"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -100823,6 +103200,17 @@
"source": "pages_dashboardpage",
"target": "lib_api_api"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_api_api"
+ },
{
"relation": "imports",
"context": "import",
@@ -101241,6 +103629,17 @@
"source": "pages_dashboardpage",
"target": "lib_api_apiresponse"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_api_apiresponse"
+ },
{
"relation": "imports",
"context": "import",
@@ -101604,6 +104003,17 @@
"source": "pages_commentspage",
"target": "lib_api_paginatedresponse"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_api_paginatedresponse"
+ },
{
"relation": "imports",
"context": "import",
@@ -102247,6 +104657,17 @@
"source": "pages_dashboardpage",
"target": "lib_utils"
},
+ {
+ "relation": "imports_from",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_utils"
+ },
{
"relation": "imports_from",
"context": "import",
@@ -103435,6 +105856,17 @@
"source": "pages_commentspage",
"target": "lib_utils_formatdate"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "lib_utils_formatdate"
+ },
{
"relation": "imports",
"context": "import",
@@ -106396,6 +108828,56 @@
"source": "pages_dashboardpage_dashboardpage",
"target": "stores_authstore_useauthstore"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "pages_doctorclaimspage_doctorclaim"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L42",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "pages_doctorclaimspage_doctorclaimspage"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L23",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "pages_doctorclaimspage_filters"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L36",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "pages_doctorclaimspage_method_label"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "assets/admin/pages/DoctorClaimsPage.tsx",
+ "source_location": "L30",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "pages_doctorclaimspage",
+ "target": "pages_doctorclaimspage_status_badge"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -113659,6 +116141,48 @@
"source": "migrations_version20260711120000_version20260711120000",
"target": "abstractmigration"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000",
+ "target": "abstractmigration"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L20",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000",
+ "target": "abstractmigration"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000",
+ "target": "abstractmigration"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L14",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000",
+ "target": "abstractmigration"
+ },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -119513,6 +122037,152 @@
"source": "migrations_version20260711120000_version20260711120000_down",
"target": "migrations_version20260711120000_php_schema"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000",
+ "target": "migrations_version20260711150000_php_schema"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L20",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000",
+ "target": "migrations_version20260711150000_version20260711150000"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L44",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000",
+ "target": "migrations_version20260711150000_version20260711150000_down"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000",
+ "target": "migrations_version20260711150000_version20260711150000_getdescription"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L27",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000",
+ "target": "migrations_version20260711150000_version20260711150000_up"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L27",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000_up",
+ "target": "migrations_version20260711150000_php_schema"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711150000.php",
+ "source_location": "L44",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711150000_version20260711150000_down",
+ "target": "migrations_version20260711150000_php_schema"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000",
+ "target": "migrations_version20260711151000_php_schema"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L14",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000",
+ "target": "migrations_version20260711151000_version20260711151000"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L46",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000",
+ "target": "migrations_version20260711151000_version20260711151000_down"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L16",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000",
+ "target": "migrations_version20260711151000_version20260711151000_getdescription"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L21",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000",
+ "target": "migrations_version20260711151000_version20260711151000_up"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L21",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000_up",
+ "target": "migrations_version20260711151000_php_schema"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "migrations/Version20260711151000.php",
+ "source_location": "L46",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "migrations_version20260711151000_version20260711151000_down",
+ "target": "migrations_version20260711151000_php_schema"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -120403,17 +123073,6 @@
"source": "controller_adminapicontroller",
"target": "src_admin_controller_adminapicontroller_php_request"
},
- {
- "relation": "imports",
- "context": "import",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L8",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
{
"relation": "imports",
"context": "import",
@@ -120615,16 +123274,6 @@
"source": "controller_adminapicontroller_adminapicontroller",
"target": "controller_adminapicontroller_adminapicontroller_financialsummary"
},
- {
- "relation": "method",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L455",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller",
- "target": "controller_adminapicontroller_adminapicontroller_importdoctor"
- },
{
"relation": "method",
"confidence": "EXTRACTED",
@@ -120745,16 +123394,6 @@
"source": "controller_adminapicontroller_adminapicontroller",
"target": "controller_adminapicontroller_adminapicontroller_smssampletemplates"
},
- {
- "relation": "method",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L556",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller",
- "target": "controller_adminapicontroller_adminapicontroller_syncrefcollection"
- },
{
"relation": "method",
"confidence": "EXTRACTED",
@@ -121043,17 +123682,6 @@
"source": "controller_adminapicontroller_adminapicontroller_financialsummary",
"target": "src_admin_controller_adminapicontroller_php_jsonresponse"
},
- {
- "relation": "references",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L455",
- "weight": 1.0,
- "context": "return_type",
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_importdoctor",
- "target": "src_admin_controller_adminapicontroller_php_jsonresponse"
- },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -121263,16 +123891,6 @@
"source": "controller_adminapicontroller_adminapicontroller_users",
"target": "src_admin_controller_adminapicontroller_php_jsonresponse"
},
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L112",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_toggleuserstatus",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -121284,16 +123902,6 @@
"source": "controller_adminapicontroller_adminapicontroller_updateuserrole",
"target": "src_admin_controller_adminapicontroller_php_request"
},
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L124",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_updateuserrole",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -121415,17 +124023,6 @@
"source": "controller_adminapicontroller_adminapicontroller_financialbreakdowns",
"target": "src_admin_controller_adminapicontroller_php_request"
},
- {
- "relation": "references",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L455",
- "weight": 1.0,
- "context": "parameter_type",
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_importdoctor",
- "target": "src_admin_controller_adminapicontroller_php_request"
- },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -121569,36 +124166,6 @@
"source": "controller_adminapicontroller_adminapicontroller_userdetail",
"target": "gateway_mellatgateway_mellatgateway_date"
},
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L151",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_userdetail",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L171",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_updateuser",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L199",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_deleteuser",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
{
"relation": "calls",
"context": "call",
@@ -121610,16 +124177,6 @@
"source": "controller_adminapicontroller_adminapicontroller_users",
"target": "gateway_mellatgateway_mellatgateway_date"
},
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L220",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_users",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
{
"relation": "calls",
"context": "call",
@@ -121642,89 +124199,6 @@
"source": "controller_adminapicontroller_adminapicontroller_createdoctor",
"target": "service_inputvalidator_inputvalidator"
},
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L406",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_createdoctor",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "calls",
- "context": "call",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L539",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_importdoctor",
- "target": "controller_adminapicontroller_adminapicontroller_syncrefcollection"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L499",
- "weight": 1.0,
- "context": "parameter_type",
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_importdoctor",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L934",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_createappointment",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L646",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_createclinic",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L1934",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_dashboardrecent",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references_constant",
- "confidence": "EXTRACTED",
- "confidence_score": 1.0,
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L2010",
- "weight": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_dashboardstats",
- "target": "src_admin_controller_adminapicontroller_php_user"
- },
- {
- "relation": "references",
- "confidence": "EXTRACTED",
- "source_file": "src/Admin/Controller/AdminApiController.php",
- "source_location": "L556",
- "weight": 1.0,
- "context": "parameter_type",
- "confidence_score": 1.0,
- "source": "controller_adminapicontroller_adminapicontroller_syncrefcollection",
- "target": "src_admin_controller_adminapicontroller_php_collection"
- },
{
"relation": "calls",
"context": "call",
@@ -122155,6 +124629,37 @@
"source": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand",
"target": "command_cancelexpiredappointmentscommand_cancelexpiredappointmentscommand_execute"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "command"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand",
+ "target": "command"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "confidence_score": 1.0,
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L74",
+ "weight": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute",
+ "target": "command"
+ },
{
"relation": "references_constant",
"confidence": "EXTRACTED",
@@ -122196,6 +124701,37 @@
"source": "command_createadmincommand_createadmincommand_execute",
"target": "command"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "command"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L26",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand",
+ "target": "command"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "confidence_score": 1.0,
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L68",
+ "weight": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand_execute",
+ "target": "command"
+ },
{
"relation": "imports",
"context": "import",
@@ -122227,6 +124763,37 @@
"source": "command_prunelogscommand_prunelogscommand_execute",
"target": "command"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "command"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L26",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand",
+ "target": "command"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "confidence_score": 1.0,
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L54",
+ "weight": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand_execute",
+ "target": "command"
+ },
{
"relation": "imports",
"context": "import",
@@ -126021,6 +128588,27 @@
"source": "repository_doctoraddressrepository_doctoraddressrepository",
"target": "serviceentityrepository"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository",
+ "target": "serviceentityrepository"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository",
+ "target": "serviceentityrepository"
+ },
{
"relation": "imports",
"context": "import",
@@ -129180,6 +131768,17 @@
"source": "controller_authcontroller_authcontroller_enforcelimit",
"target": "ratelimiterfactory"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L14",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "ratelimiterfactory"
+ },
{
"relation": "imports",
"context": "import",
@@ -131111,6 +133710,16 @@
"source": "security_passwordauthenticator_passwordauthenticator",
"target": "security_passwordauthenticator_passwordauthenticator_construct"
},
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Auth/Security/PasswordAuthenticator.php",
+ "source_location": "L41",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "security_passwordauthenticator_passwordauthenticator",
+ "target": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin"
+ },
{
"relation": "method",
"confidence": "EXTRACTED",
@@ -131141,15 +133750,26 @@
"source": "security_passwordauthenticator_passwordauthenticator",
"target": "security_passwordauthenticator_passwordauthenticator_supports"
},
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Auth/Security/PasswordAuthenticator.php",
+ "source_location": "L61",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "security_passwordauthenticator_passwordauthenticator_authenticate",
+ "target": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin"
+ },
{
"relation": "references",
"confidence": "EXTRACTED",
"source_file": "src/Auth/Security/PasswordAuthenticator.php",
- "source_location": "L33",
+ "source_location": "L41",
"weight": 1.0,
"context": "parameter_type",
"confidence_score": 1.0,
- "source": "security_passwordauthenticator_passwordauthenticator_supports",
+ "source": "security_passwordauthenticator_passwordauthenticator_istrustedservicelogin",
"target": "src_auth_security_passwordauthenticator_php_request"
},
{
@@ -131185,6 +133805,17 @@
"source": "security_passwordauthenticator_passwordauthenticator_onauthenticationsuccess",
"target": "src_auth_security_passwordauthenticator_php_request"
},
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Auth/Security/PasswordAuthenticator.php",
+ "source_location": "L33",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "security_passwordauthenticator_passwordauthenticator_supports",
+ "target": "src_auth_security_passwordauthenticator_php_request"
+ },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -138294,9 +140925,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L8",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller",
- "target": "controller_basecontroller_basecontroller",
- "confidence_score": 1.0
+ "target": "controller_basecontroller_basecontroller"
},
{
"relation": "contains",
@@ -138304,9 +140935,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L18",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller"
},
{
"relation": "imports",
@@ -138315,9 +140946,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L5",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_clinicdoctorinvitation",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_clinicdoctorinvitation"
},
{
"relation": "imports",
@@ -138326,9 +140957,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L10",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_request",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_request"
},
{
"relation": "imports",
@@ -138337,9 +140968,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L11",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response"
},
{
"relation": "inherits",
@@ -138347,9 +140978,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L18",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_basecontroller_basecontroller",
- "confidence_score": 1.0
+ "target": "controller_basecontroller_basecontroller"
},
{
"relation": "method",
@@ -138357,9 +140988,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L92",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl"
},
{
"relation": "method",
@@ -138367,9 +140998,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L20",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_construct",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_construct"
},
{
"relation": "method",
@@ -138377,9 +141008,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L50",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_respond",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_respond"
},
{
"relation": "method",
@@ -138387,9 +141018,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L83",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_statefromstatus",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_statefromstatus"
},
{
"relation": "method",
@@ -138397,9 +141028,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L26",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_view",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_view"
},
{
"relation": "calls",
@@ -138408,9 +141039,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L38",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_view",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl"
},
{
"relation": "calls",
@@ -138419,9 +141050,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L37",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_view",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_statefromstatus",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_statefromstatus"
},
{
"relation": "references",
@@ -138430,9 +141061,9 @@
"source_location": "L26",
"weight": 1.0,
"context": "return_type",
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_view",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response"
},
{
"relation": "references",
@@ -138441,9 +141072,9 @@
"source_location": "L50",
"weight": 1.0,
"context": "return_type",
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_respond",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_response"
},
{
"relation": "calls",
@@ -138452,9 +141083,9 @@
"source_file": "src/ClinicInvitation/Controller/ClinicInvitationWebController.php",
"source_location": "L69",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_respond",
- "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl",
- "confidence_score": 1.0
+ "target": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_adminurl"
},
{
"relation": "references",
@@ -138463,9 +141094,9 @@
"source_location": "L50",
"weight": 1.0,
"context": "parameter_type",
+ "confidence_score": 1.0,
"source": "controller_clinicinvitationwebcontroller_clinicinvitationwebcontroller_respond",
- "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_request",
- "confidence_score": 1.0
+ "target": "src_clinicinvitation_controller_clinicinvitationwebcontroller_php_request"
},
{
"relation": "references_constant",
@@ -142420,6 +145051,548 @@
"source": "controller_dashboardcontroller_dashboardcontroller_secretaryclinicdashboard",
"target": "src_dashboard_controller_dashboardcontroller_php_clinic"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L24",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "entitymanagerinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "src_doctor_command_backfillsurrogaterolecommand_php_inputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L13",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "src_doctor_command_backfillsurrogaterolecommand_php_outputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L14",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand",
+ "target": "symfonystyle"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L35",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand",
+ "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_configure"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L30",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand",
+ "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand",
+ "target": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute",
+ "target": "src_doctor_command_backfillsurrogaterolecommand_php_inputinterface"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/BackfillSurrogateRoleCommand.php",
+ "source_location": "L40",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_backfillsurrogaterolecommand_backfillsurrogaterolecommand_execute",
+ "target": "src_doctor_command_backfillsurrogaterolecommand_php_outputinterface"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "command_fixirimcnamescommand_fixirimcnamescommand"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "entitymanagerinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "src_doctor_command_fixirimcnamescommand_php_inputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "src_doctor_command_fixirimcnamescommand_php_outputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L13",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand",
+ "target": "symfonystyle"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L33",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand",
+ "target": "command_fixirimcnamescommand_fixirimcnamescommand_configure"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand",
+ "target": "command_fixirimcnamescommand_fixirimcnamescommand_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand",
+ "target": "command_fixirimcnamescommand_fixirimcnamescommand_execute"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand_execute",
+ "target": "src_doctor_command_fixirimcnamescommand_php_inputinterface"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L38",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand_execute",
+ "target": "src_doctor_command_fixirimcnamescommand_php_outputinterface"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Command/FixIrimcNamesCommand.php",
+ "source_location": "L52",
+ "weight": 1.0,
+ "source": "command_fixirimcnamescommand_fixirimcnamescommand_execute",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "command_purgedoctorscommand_purgedoctorscommand"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "connection"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "src_doctor_command_purgedoctorscommand_php_inputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "src_doctor_command_purgedoctorscommand_php_outputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand",
+ "target": "symfonystyle"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L41",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand",
+ "target": "command_purgedoctorscommand_purgedoctorscommand_configure"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L36",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand",
+ "target": "command_purgedoctorscommand_purgedoctorscommand_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand",
+ "target": "command_purgedoctorscommand_purgedoctorscommand_execute"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand_execute",
+ "target": "src_doctor_command_purgedoctorscommand_php_inputinterface"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Command/PurgeDoctorsCommand.php",
+ "source_location": "L47",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "command_purgedoctorscommand_purgedoctorscommand_execute",
+ "target": "src_doctor_command_purgedoctorscommand_php_outputinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "controller_basecontroller_basecontroller"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L19",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_request"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_user"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L20",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_basecontroller_basecontroller"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L51",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claim"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L29",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L158",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L115",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller",
+ "target": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L29",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claiminfo",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L51",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L158",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L115",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L82",
+ "weight": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim",
+ "target": "gateway_mellatgateway_mellatgateway_time"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L51",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_request"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L51",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claim",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_user"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L158",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_claimslist",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_request"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorClaimController.php",
+ "source_location": "L115",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorclaimcontroller_doctorclaimcontroller_transfer",
+ "target": "src_doctor_controller_doctorclaimcontroller_php_request"
+ },
{
"relation": "imports",
"context": "import",
@@ -142766,6 +145939,17 @@
"source": "controller_doctorcontroller_doctorcontroller_createaddress",
"target": "src_doctor_controller_doctorcontroller_php_user"
},
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorController.php",
+ "source_location": "L345",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "source": "controller_doctorcontroller_doctorcontroller_delete",
+ "target": "src_doctor_controller_doctorcontroller_php_user",
+ "confidence_score": 1.0
+ },
{
"relation": "references",
"confidence": "EXTRACTED",
@@ -143050,6 +146234,123 @@
"source": "controller_doctorcontroller_doctorcontroller_hydrateaddress",
"target": "src_doctor_controller_doctorcontroller_php_doctoraddress"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller",
+ "target": "controller_basecontroller_basecontroller"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller",
+ "target": "controller_doctorimportcontroller_doctorimportcontroller"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller",
+ "target": "src_doctor_controller_doctorimportcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller",
+ "target": "src_doctor_controller_doctorimportcontroller_php_request"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller",
+ "target": "src_doctor_controller_doctorimportcontroller_php_user"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L24",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller",
+ "target": "controller_basecontroller_basecontroller"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L26",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller",
+ "target": "controller_doctorimportcontroller_doctorimportcontroller_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller",
+ "target": "controller_doctorimportcontroller_doctorimportcontroller_import"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller_import",
+ "target": "src_doctor_controller_doctorimportcontroller_php_jsonresponse"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller_import",
+ "target": "src_doctor_controller_doctorimportcontroller_php_request"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Controller/DoctorImportController.php",
+ "source_location": "L30",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "controller_doctorimportcontroller_doctorimportcontroller_import",
+ "target": "src_doctor_controller_doctorimportcontroller_php_user"
+ },
{
"relation": "imports",
"context": "import",
@@ -144992,6 +148293,277 @@
"source": "entity_doctoraddress_doctoraddress_touch",
"target": "gateway_mellatgateway_mellatgateway_time"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest",
+ "target": "src_doctor_entity_doctorclaimrequest_php_user"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L61",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L100",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getcompletedat"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L99",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getcreatedat"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L94",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L97",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getfailurereason"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L92",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getid"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L96",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getstatus"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L95",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getuser"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L93",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getuuid"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L98",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getverificationmethod"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L79",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L85",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_markfailed"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L72",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_maskmobile"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L102",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_toarray"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L32",
+ "weight": 1.0,
+ "context": "field",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "src_doctor_entity_doctorclaimrequest_php_doctor"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L36",
+ "weight": 1.0,
+ "context": "field",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest",
+ "target": "src_doctor_entity_doctorclaimrequest_php_user"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L61",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_construct",
+ "target": "src_doctor_entity_doctorclaimrequest_php_doctor"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L94",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_getdoctor",
+ "target": "src_doctor_entity_doctorclaimrequest_php_doctor"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L61",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_construct",
+ "target": "src_doctor_entity_doctorclaimrequest_php_user"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L95",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_getuser",
+ "target": "src_doctor_entity_doctorclaimrequest_php_user"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L69",
+ "weight": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_construct",
+ "target": "gateway_mellatgateway_mellatgateway_time"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L82",
+ "weight": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_markcompleted",
+ "target": "gateway_mellatgateway_mellatgateway_time"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L89",
+ "weight": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_markfailed",
+ "target": "gateway_mellatgateway_mellatgateway_time"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Entity/DoctorClaimRequest.php",
+ "source_location": "L107",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "entity_doctorclaimrequest_doctorclaimrequest_toarray",
+ "target": "entity_doctorclaimrequest_doctorclaimrequest_getuuid"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -145191,6 +148763,59 @@
"source": "repository_doctoraddressrepository_doctoraddressrepository_findavailablefordoctor",
"target": "src_doctor_repository_doctoraddressrepository_php_doctor"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository",
+ "target": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository",
+ "target": "src_doctor_repository_doctorclaimrequestrepository_php_managerregistry"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository",
+ "target": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Repository/DoctorClaimRequestRepository.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "repository_doctorclaimrequestrepository_doctorclaimrequestrepository_construct",
+ "target": "src_doctor_repository_doctorclaimrequestrepository_php_managerregistry"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -145422,6 +149047,552 @@
"source": "repository_doctorrepository_doctorrepository_findwithfilters",
"target": "repository_doctorrepository_doctorrepository_doctoridsviacliniclocation"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "entitymanagerinterface"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L16",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "loggerinterface"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "smslog"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L13",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "smsservice"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice",
+ "target": "src_doctor_service_doctorclaimservice_php_user"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_claim"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L34",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L150",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_finalize"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L189",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_revert"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L89",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_transferbyadmin"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L124",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice",
+ "target": "service_doctorclaimservice_doctorclaimservice_verifyidentity"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L41",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L77",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "service_doctorclaimservice_doctorclaimservice_finalize"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L72",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "service_doctorclaimservice_doctorclaimservice_revert"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L70",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "service_doctorclaimservice_doctorclaimservice_verifyidentity"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L47",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L56",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "src_doctor_service_doctorclaimservice_php_user"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L81",
+ "weight": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_claim",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L153",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_finalize",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L192",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_revert",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L92",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L124",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_verifyidentity",
+ "target": "src_doctor_service_doctorclaimservice_php_doctor"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L150",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_finalize",
+ "target": "src_doctor_service_doctorclaimservice_php_user"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "confidence_score": 1.0,
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L98",
+ "weight": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "target": "src_doctor_service_doctorclaimservice_php_user"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L124",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_verifyidentity",
+ "target": "src_doctor_service_doctorclaimservice_php_user"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L150",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_finalize",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L189",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_revert",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L89",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "target": "doctorclaimrequest"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L119",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "target": "service_doctorclaimservice_doctorclaimservice_finalize"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L102",
+ "weight": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_transferbyadmin",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "src/Doctor/Service/DoctorClaimService.php",
+ "source_location": "L138",
+ "weight": 1.0,
+ "source": "service_doctorclaimservice_doctorclaimservice_verifyidentity",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportResult.php",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportresult",
+ "target": "service_doctorimportresult_doctorimportresult"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportResult.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportresult_doctorimportresult",
+ "target": "service_doctorimportresult_doctorimportresult_construct"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L11",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice",
+ "target": "entitymanagerinterface"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L23",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice",
+ "target": "service_doctorimportservice_doctorimportservice"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L5",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice",
+ "target": "src_doctor_service_doctorimportservice_php_user"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice",
+ "target": "service_doctorimportservice_doctorimportservice_construct"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L46",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice",
+ "target": "service_doctorimportservice_doctorimportservice_doimport"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice",
+ "target": "service_doctorimportservice_doctorimportservice_import"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L118",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice",
+ "target": "service_doctorimportservice_doctorimportservice_syncrefcollection"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_import",
+ "target": "doctorimportresult"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L37",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_import",
+ "target": "service_doctorimportservice_doctorimportservice_doimport"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L34",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_import",
+ "target": "src_doctor_service_doctorimportservice_php_user"
+ },
+ {
+ "relation": "references_constant",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L54",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_doimport",
+ "target": "src_doctor_service_doctorimportservice_php_user"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L46",
+ "weight": 1.0,
+ "context": "return_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_doimport",
+ "target": "doctorimportresult"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L103",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_doimport",
+ "target": "service_doctorimportservice_doctorimportservice_syncrefcollection"
+ },
+ {
+ "relation": "references",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Doctor/Service/DoctorImportService.php",
+ "source_location": "L118",
+ "weight": 1.0,
+ "context": "parameter_type",
+ "confidence_score": 1.0,
+ "source": "service_doctorimportservice_doctorimportservice_syncrefcollection",
+ "target": "src_doctor_service_doctorimportservice_php_collection"
+ },
{
"relation": "imports",
"context": "import",
@@ -168619,6 +172790,16 @@
"source": "service_apiirservice_apiirservice",
"target": "service_apiirservice_apiirservice_isconfigured"
},
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Service/ApiIrService.php",
+ "source_location": "L79",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_apiirservice_apiirservice",
+ "target": "service_apiirservice_apiirservice_personinfo"
+ },
{
"relation": "method",
"confidence": "EXTRACTED",
@@ -168694,6 +172875,17 @@
"source": "service_apiirservice_apiirservice_ibanmatch",
"target": "service_apiirservice_apiirservice_post"
},
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Service/ApiIrService.php",
+ "source_location": "L81",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "service_apiirservice_apiirservice_personinfo",
+ "target": "service_apiirservice_apiirservice_post"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -168859,6 +173051,101 @@
"source": "service_inputvalidator_inputvalidator",
"target": "service_inputvalidator_inputvalidator_toenglishdigits"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "util_persiantext",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L12",
+ "weight": 1.0,
+ "source": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L35",
+ "weight": 1.0,
+ "source": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L17",
+ "weight": 1.0,
+ "source": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L22",
+ "weight": 1.0,
+ "source": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "INFERRED",
+ "confidence_score": 0.8,
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "source": "shared_persiantexttest_persiantexttest_teststripdoctortitle",
+ "target": "util_persiantext_persiantext"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L14",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "util_persiantext_persiantext",
+ "target": "util_persiantext_persiantext_normalize"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L40",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "util_persiantext_persiantext",
+ "target": "util_persiantext_persiantext_samename"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "src/Shared/Util/PersianText.php",
+ "source_location": "L46",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "util_persiantext_persiantext",
+ "target": "util_persiantext_persiantext_stripdoctortitle"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -178656,6 +182943,48 @@
"source": "doctor_doctoraddressownershiptest_doctoraddressownershiptest",
"target": "tests_apitestcase_apitestcase"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest",
+ "target": "tests_apitestcase_apitestcase"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "tests_apitestcase_apitestcase"
+ },
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest",
+ "target": "tests_apitestcase_apitestcase"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L13",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "tests_apitestcase_apitestcase"
+ },
{
"relation": "imports",
"context": "import",
@@ -180035,6 +184364,27 @@
"source": "shared_errorcodestest_errorcodestest",
"target": "testcase"
},
+ {
+ "relation": "imports",
+ "context": "import",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest",
+ "target": "testcase"
+ },
+ {
+ "relation": "inherits",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "testcase"
+ },
{
"relation": "imports",
"context": "import",
@@ -180691,6 +185041,759 @@
"source": "doctor_doctoraddressownershiptest_doctoraddressownershiptest_testownercanread",
"target": "doctor_doctoraddressownershiptest_doctoraddressownershiptest_makeaddress"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L44",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L32",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L23",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L17",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_setup"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L183",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L205",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L127",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L172",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L213",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L105",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L172",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L85",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L184",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L116",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L55",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L205",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L141",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L159",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L130",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L108",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L175",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L88",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L187",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L119",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L58",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L145",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L162",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_mockapiir"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L185",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferhappypath",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L207",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testadmintransferrequiresadmin",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L129",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L174",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testclaiminfoispublic",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L215",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L107",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L174",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L87",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L186",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L118",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L57",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L207",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testunclaimedprofilenotdeletablebyrandomuser",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L143",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L161",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testvalidationerrors",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_importunclaimeddoctor"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L133",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testalreadyclaimedisconflict",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L216",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testclaimrequiresauthentication",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L111",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testdeceasedpersonisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L178",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testmobilemismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L91",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testnamemismatchrevertstounclaimed",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L189",
+ "weight": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testownercandeleteownprofilebutotherscannot",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L122",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testshahkarmismatchisrejected",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L64",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testsuccessfulclaimtransfersownershipanddeletessurrogate",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorClaimTest.php",
+ "source_location": "L148",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorclaimtest_doctorclaimtest_testuserwhoalreadyownsadoctorcannotclaim",
+ "target": "doctor_doctorclaimtest_doctorclaimtest_claimbody"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L13",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L80",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L33",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L125",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L118",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L56",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L107",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest",
+ "target": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L85",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L38",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L129",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L121",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L61",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating",
+ "target": "doctor_doctorimporttest_doctorimporttest_importpayload"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L83",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testclaimeddoctorisneveroverwritten",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L36",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testimportcreatesunclaimeddoctorwithsurrogateuser",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L129",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testimporterrolecanimportbutnothingelse",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L121",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testnonadminisrejected",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L59",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testreimportupdatesinsteadofduplicating",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
+ {
+ "relation": "calls",
+ "context": "call",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Doctor/DoctorImportTest.php",
+ "source_location": "L111",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "doctor_doctorimporttest_doctorimporttest_testvalidationerrors",
+ "target": "doctor_doctorimporttest_doctorimporttest_freshcode"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -182351,6 +187454,66 @@
"source": "shared_errorcodestest_errorcodestest",
"target": "shared_errorcodestest_errorcodestest_testwirevaluesarepreserved"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L8",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L10",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest_testarabicyehandkafareunified"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L33",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest_testdifferentnamesstaydifferent"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L15",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest_testhalfspaceandextrawhitespace"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L20",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest_testpersianandarabicdigits"
+ },
+ {
+ "relation": "method",
+ "confidence": "EXTRACTED",
+ "source_file": "tests/Shared/PersianTextTest.php",
+ "source_location": "L26",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "shared_persiantexttest_persiantexttest",
+ "target": "shared_persiantexttest_persiantexttest_teststripdoctortitle"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -185525,9 +190688,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L1",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page",
- "target": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9"
},
{
"relation": "contains",
@@ -185535,9 +190698,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L3",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0632\u0645\u06cc\u0646\u0647",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0632\u0645\u06cc\u0646\u0647"
},
{
"relation": "contains",
@@ -185545,9 +190708,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L23",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637"
},
{
"relation": "contains",
@@ -185555,9 +190718,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L17",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641"
},
{
"relation": "contains",
@@ -185565,9 +190728,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L250",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645"
},
{
"relation": "contains",
@@ -185575,9 +190738,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L36",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc"
},
{
"relation": "contains",
@@ -185585,9 +190748,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L89",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u067e\u0632\u0634\u06a9_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_url_\u067e\u06cc\u0627\u0645\u06a9",
- "target": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641"
},
{
"relation": "contains",
@@ -185595,9 +190758,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L91",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641",
- "target": "prompt_clinic_invitation_twig_page_\u06f1_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_\u062a\u0648\u06a9\u0646_\u062f\u0639\u0648\u062a",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u06f1_\u06a9\u0648\u062a\u0627\u0647_\u06a9\u0631\u062f\u0646_\u062a\u0648\u06a9\u0646_\u062f\u0639\u0648\u062a"
},
{
"relation": "contains",
@@ -185605,9 +190768,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L104",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641",
- "target": "prompt_clinic_invitation_twig_page_\u06f2_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0627\u06cc\u06cc\u062f_\u0631\u062f",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u06f2_\u0635\u0641\u062d\u0647_twig_\u062f\u0639\u0648\u062a_\u0646\u0645\u0627\u06cc\u0634_\u062a\u0627\u06cc\u06cc\u062f_\u0631\u062f"
},
{
"relation": "contains",
@@ -185615,9 +190778,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L202",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641",
- "target": "prompt_clinic_invitation_twig_page_\u06f3_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0627\u06cc_twig",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u06f3_\u062a\u0645\u067e\u0644\u06cc\u062a_\u0647\u0627\u06cc_twig"
},
{
"relation": "contains",
@@ -185625,9 +190788,9 @@
"source_file": ".claude/prompt/clinic-invitation-twig-page.md",
"source_location": "L243",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "prompt_clinic_invitation_twig_page_\u0648\u0638\u0627\u06cc\u0641",
- "target": "prompt_clinic_invitation_twig_page_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc",
- "confidence_score": 1.0
+ "target": "prompt_clinic_invitation_twig_page_\u06f4_\u0645\u0633\u062a\u0646\u062f\u0633\u0627\u0632\u06cc"
},
{
"relation": "contains",
@@ -188299,6 +193462,156 @@
"source": "prompt_doctor_experience_activity_date_\u0648\u0638\u0627\u06cc\u0641",
"target": "prompt_doctor_experience_activity_date_\u06f4_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_annotation_\u0648_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_api"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L1",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L8",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0632\u0645\u06cc\u0646\u0647",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L15",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L149",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L26",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L78",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L111",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L3",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u062f\u0631_\u0627\u0641\u0632\u0648\u062f\u0646_\u0622\u062f\u0631\u0633_\u06a9\u067e\u0686\u0627_\u0648_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u067e\u0631\u0648\u0698\u0647",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L54",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L49",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u06cc\u0634\u0647_\u0647\u0627",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L28",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f1_\u0631\u0641\u0639_\u0632\u0648\u0645_\u0646\u0642\u0634\u0647_\u0647\u0646\u06af\u0627\u0645_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u0647\u0631_\u0646\u06cc\u0627\u0632_\u062f\u0648_\u0628\u0627\u0631_\u0627\u0646\u062a\u062e\u0627\u0628",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L84",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_84",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L80",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f2_\u06a9\u067e\u0686\u0627_\u0648_\u0641\u06cc\u0644\u062f_\u0645\u0648\u0628\u0627\u06cc\u0644_\u062f\u0631_claim",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_80",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L124",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0631\u0627\u0647_\u062d\u0644_124",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/doctor-map-claim-captcha-delete.md",
+ "source_location": "L113",
+ "weight": 1.0,
+ "source": "prompt_doctor_map_claim_captcha_delete_\u0648\u0638\u06cc\u0641\u0647_\u06f3_\u062d\u0630\u0641_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u0645\u0627\u0644\u06a9",
+ "target": "prompt_doctor_map_claim_captcha_delete_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc_113",
+ "confidence_score": 1.0
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -189699,6 +195012,116 @@
"source": "prompt_fix_doctor_city_via_clinic_\u0648\u0638\u0627\u06cc\u0641",
"target": "prompt_fix_doctor_city_via_clinic_\u06f4_\u062a\u0633\u062a"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L1",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge",
+ "target": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L7",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0632\u0645\u06cc\u0646\u0647"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L36",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L30",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0645\u0634\u06a9\u0644_\u0647\u062f\u0641"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L131",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0646\u06a9\u0627\u062a_\u0645\u0647\u0645"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L45",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0648\u0636\u0639\u06cc\u062a_\u0641\u0639\u0644\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L64",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L3",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0631\u0641\u0639_\u0646\u0627\u0645_\u062f\u0648\u062a\u0627\u06cc\u06cc_\u062f\u06a9\u062a\u0631_\u062f\u0631_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_irimc_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646",
+ "target": "prompt_fix_doctor_name_and_purge_\u067e\u0631\u0648\u0698\u0647"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L66",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641",
+ "target": "prompt_fix_doctor_name_and_purge_\u06f1_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631_\u0647\u0646\u06af\u0627\u0645_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L85",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641",
+ "target": "prompt_fix_doctor_name_and_purge_\u06f2_\u0627\u0635\u0644\u0627\u062d_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_irimc_\u0645\u0648\u062c\u0648\u062f"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/fix-doctor-name-and-purge.md",
+ "source_location": "L99",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_fix_doctor_name_and_purge_\u0648\u0638\u0627\u06cc\u0641",
+ "target": "prompt_fix_doctor_name_and_purge_\u06f3_\u062f\u0633\u062a\u0648\u0631_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u067e\u0632\u0634\u06a9\u0627\u0646_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0645\u06cc\u0632_\u062a\u0633\u062a"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -193119,6 +198542,276 @@
"source": "prompt_insurance_visit_pricing_\u0648\u0638\u0627\u06cc\u0641",
"target": "prompt_insurance_visit_pricing_\u06f5_\u0645\u0633\u062a\u0646\u062f\u0627\u062a"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L1",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete",
+ "target": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L338",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u0641\u0631\u0636\u06cc\u0627\u062a_\u0635\u0631\u06cc\u062d_\u0641\u0642\u0637_\u062c\u0627\u06cc\u06cc_\u06a9\u0647_\u0627\u0637\u0644\u0627\u0639\u0627\u062a_\u0648\u062c\u0648\u062f_\u0646\u062f\u0627\u0634\u062a"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L6",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u067e\u0631\u0648\u0698\u0647_\u0647\u0627_\u0648_\u0628\u0631\u0646\u0686"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f1_\u0647\u062f\u0641_\u0641\u06cc\u0686\u0631"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L329",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f1\u06f0_\u0645\u0639\u06cc\u0627\u0631_\u067e\u0630\u06cc\u0631\u0634_definition_of_done"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L28",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L60",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L196",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f4_workstream_b_nobat724_front_\u062c\u0631\u06cc\u0627\u0646_claim_\u062f\u0631_\u0633\u0627\u06cc\u062a_\u0639\u0645\u0648\u0645\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L217",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f5_workstream_c_\u067e\u0646\u0644_\u0627\u062f\u0645\u06cc\u0646_clinicpro_visibility_\u0639\u0645\u0644\u06cc\u0627\u062a\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L229",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L275",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f7_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u062f\u0627\u062f\u0647_\u0633\u06cc\u0627\u0633\u062a_\u0641\u06cc\u0644\u062f_\u0628\u0647_\u0641\u06cc\u0644\u062f_source_of_truth"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L290",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f8_\u0627\u0633\u062a\u0631\u0627\u062a\u0698\u06cc_\u062a\u0633\u062a_\u0627\u0644\u0632\u0627\u0645\u06cc_suite\u0647\u0627\u06cc_\u0645\u0648\u062c\u0648\u062f_\u0633\u0628\u0632_\u0628\u0645\u0627\u0646\u0646\u062f"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L319",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u0641\u06cc\u0686\u0631_\u06a9\u0627\u0645\u0644_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_irimc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u06a9\u0631\u0627\u0644\u0631_state_based",
+ "target": "prompt_irimc_import_complete_\u06f9_deployment_\u0639\u0645\u0644\u06cc\u0627\u062a"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L30",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632",
+ "target": "prompt_irimc_import_complete_\u06f2_\u06f1_\u0622\u0646\u0686\u0647_\u0627\u0632_\u0642\u0628\u0644_\u067e\u06cc\u0627\u062f\u0647_\u0634\u062f\u0647_\u0648_\u06a9\u0627\u0631_\u0645\u06cc_\u06a9\u0646\u062f"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L47",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f2_\u062a\u062d\u0644\u06cc\u0644_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0648\u062c\u0648\u062f_\u062d\u0642\u0627\u06cc\u0642_\u062a\u0623\u06cc\u06cc\u062f\u0634\u062f\u0647_\u062f\u0648\u0628\u0627\u0631\u0647_\u06a9\u0634\u0641_\u0646\u06a9\u0646_\u062f\u0648\u0628\u0627\u0631\u0647_\u0646\u0633\u0627\u0632",
+ "target": "prompt_irimc_import_complete_\u06f2_\u06f2_\u0648\u0627\u06af\u0631\u0627\u06cc\u06cc_\u0647\u0627\u06cc_\u0633\u0646\u062f_\u0628\u0627_\u06a9\u062f_\u06a9\u0647_\u0627\u06cc\u0646_\u067e\u0631\u0627\u0645\u067e\u062a_\u062d\u0644_\u0645\u06cc_\u06a9\u0646\u062f_\u062a\u0635\u0645\u06cc\u0645_\u0647\u0627\u06cc_\u0645\u0639\u0645\u0627\u0631\u06cc_\u0645\u0633\u062a\u0646\u062f"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L62",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f1_\u0627\u0633\u062a\u062e\u0631\u0627\u062c_\u0645\u0646\u0637\u0642_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0627\u0632_\u06a9\u0646\u062a\u0631\u0644\u0631_thin_controller"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L72",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f2_\u0646\u0642\u0634_role_unclaimed_doctor_\u0628\u0631\u0627\u06cc_\u06a9\u0627\u0631\u0628\u0631_\u062c\u0627\u0646\u0634\u06cc\u0646"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L86",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f3_\u06cc\u06a9\u062a\u0627\u0633\u0627\u0632\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633\u06cc_\u06a9\u0644\u06cc\u062f_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0631\u0641\u0639_race"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L104",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f4_\u062c\u0631\u06cc\u0627\u0646_claim_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u062a\u0648\u0633\u0637_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc_\u0637\u0628\u0642_climed_md"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L159",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f5_\u0627\u0646\u062a\u0642\u0627\u0644_\u062f\u0633\u062a\u06cc_\u0627\u062f\u0645\u06cc\u0646_\u0627\u0628\u0632\u0627\u0631_\u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L163",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f6_\u0641\u06cc\u0644\u062a\u0631_\u0627\u062f\u0645\u06cc\u0646_\u0646\u0645\u0627\u06cc\u0634_\u0648\u0636\u0639\u06cc\u062a"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L169",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f7_\u0627\u062d\u0631\u0627\u0632_\u0647\u0648\u06cc\u062a_\u06a9\u0631\u0627\u0644\u0631_\u06a9\u0645\u06cc\u0646\u0647_\u0633\u0627\u0632\u06cc_\u062f\u0633\u062a\u0631\u0633\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L187",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f3_workstream_a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
+ "target": "prompt_irimc_import_complete_\u06f3_\u06f8_\u0645\u0633\u062a\u0646\u062f\u0627\u062a_api_\u0642\u0627\u0646\u0648\u0646_\u067e\u0631\u0648\u0698\u0647_\u0647\u0645\u0627\u0646_session"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L233",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md",
+ "target": "prompt_irimc_import_complete_\u06f6_\u06f1_state_\u062f\u0627\u062e\u0644\u06cc_sqlite_stdlib_sqlite3_\u0648\u0627\u0628\u0633\u062a\u06af\u06cc_\u062c\u062f\u06cc\u062f_\u0646\u0635\u0628_\u0646\u06a9\u0646"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L251",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md",
+ "target": "prompt_irimc_import_complete_\u06f6_\u06f2_\u062a\u0631\u062a\u06cc\u0628_\u067e\u0631\u062f\u0627\u0632\u0634_state_machine"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L259",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md",
+ "target": "prompt_irimc_import_complete_\u06f6_\u06f3_\u067e\u0646\u0644_\u0648\u0628_\u062a\u0648\u06a9\u0646_\u062a\u0648\u0633\u0639\u0647_server_py_\u0645\u0648\u062c\u0648\u062f"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": ".claude/prompt/irimc-import-complete.md",
+ "source_location": "L266",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "prompt_irimc_import_complete_\u06f6_workstream_d_\u06a9\u0631\u0627\u0644\u0631_\u0637\u0628\u0642_docs_scenarios_crawler_md",
+ "target": "prompt_irimc_import_complete_\u06f6_\u06f4_\u0642\u0648\u0627\u0639\u062f_\u0633\u062e\u062a_\u06a9\u0631\u0627\u0644\u0631"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -209093,31 +214786,31 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L348",
+ "source_location": "L349",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_doctor_management",
- "target": "api_admin_response_200_348"
+ "target": "api_admin_response_200_349"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L374",
+ "source_location": "L375",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_doctor_management",
- "target": "api_admin_response_200_374"
+ "target": "api_admin_response_200_375"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L397",
+ "source_location": "L398",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_doctor_management",
- "target": "api_admin_response_200_397"
+ "target": "api_admin_response_200_398"
},
{
"relation": "contains",
@@ -209173,11 +214866,11 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L451",
+ "source_location": "L452",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_clinic_management",
- "target": "api_admin_errors_451"
+ "target": "api_admin_errors_452"
},
{
"relation": "contains",
@@ -209203,41 +214896,41 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L412",
+ "source_location": "L413",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_clinic_management",
- "target": "api_admin_query_parameters_412"
+ "target": "api_admin_query_parameters_413"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L420",
+ "source_location": "L421",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_clinic_management",
- "target": "api_admin_response_200_420"
+ "target": "api_admin_response_200_421"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L446",
+ "source_location": "L447",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_clinic_management",
- "target": "api_admin_response_200_446"
+ "target": "api_admin_response_200_447"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L466",
+ "source_location": "L467",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_clinic_management",
- "target": "api_admin_response_200_466"
+ "target": "api_admin_response_200_467"
},
{
"relation": "contains",
@@ -209283,21 +214976,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L481",
+ "source_location": "L482",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_appointment_management",
- "target": "api_admin_query_parameters_481"
+ "target": "api_admin_query_parameters_482"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L507",
+ "source_location": "L508",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_appointment_management",
- "target": "api_admin_query_parameters_507"
+ "target": "api_admin_query_parameters_508"
},
{
"relation": "contains",
@@ -209313,21 +215006,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L486",
+ "source_location": "L487",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_appointment_management",
- "target": "api_admin_response_200_486"
+ "target": "api_admin_response_200_487"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L517",
+ "source_location": "L518",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_appointment_management",
- "target": "api_admin_response_200_517"
+ "target": "api_admin_response_200_518"
},
{
"relation": "contains",
@@ -209393,11 +215086,11 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L596",
+ "source_location": "L597",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_payment_management",
- "target": "api_admin_query_parameters_596"
+ "target": "api_admin_query_parameters_597"
},
{
"relation": "contains",
@@ -209413,21 +215106,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L608",
+ "source_location": "L609",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_payment_management",
- "target": "api_admin_response_200_608"
+ "target": "api_admin_response_200_609"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L638",
+ "source_location": "L639",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_payment_management",
- "target": "api_admin_response_200_638"
+ "target": "api_admin_response_200_639"
},
{
"relation": "contains",
@@ -209443,21 +215136,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L702",
+ "source_location": "L703",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_settlement_management",
- "target": "api_admin_query_parameters_702"
+ "target": "api_admin_query_parameters_703"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L709",
+ "source_location": "L710",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_settlement_management",
- "target": "api_admin_response_200_709"
+ "target": "api_admin_response_200_710"
},
{
"relation": "contains",
@@ -209473,21 +215166,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L739",
+ "source_location": "L740",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_representation_management",
- "target": "api_admin_query_parameters_739"
+ "target": "api_admin_query_parameters_740"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L747",
+ "source_location": "L748",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_representation_management",
- "target": "api_admin_response_200_747"
+ "target": "api_admin_response_200_748"
},
{
"relation": "contains",
@@ -209503,21 +215196,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L783",
+ "source_location": "L784",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_secretary_management",
- "target": "api_admin_query_parameters_783"
+ "target": "api_admin_query_parameters_784"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L790",
+ "source_location": "L791",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_secretary_management",
- "target": "api_admin_response_200_790"
+ "target": "api_admin_response_200_791"
},
{
"relation": "contains",
@@ -209543,21 +215236,21 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L803",
+ "source_location": "L804",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_rating_comment_management",
- "target": "api_admin_query_parameters_803"
+ "target": "api_admin_query_parameters_804"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L820",
+ "source_location": "L821",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_rating_comment_management",
- "target": "api_admin_query_parameters_820"
+ "target": "api_admin_query_parameters_821"
},
{
"relation": "contains",
@@ -209583,31 +215276,31 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L840",
+ "source_location": "L841",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_sms_management_admin",
- "target": "api_admin_query_parameters_840"
+ "target": "api_admin_query_parameters_841"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L847",
+ "source_location": "L848",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_sms_management_admin",
- "target": "api_admin_response_200_847"
+ "target": "api_admin_response_200_848"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L878",
+ "source_location": "L879",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_sms_management_admin",
- "target": "api_admin_response_200_878"
+ "target": "api_admin_response_200_879"
},
{
"relation": "contains",
@@ -209743,51 +215436,51 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L1185",
+ "source_location": "L1186",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_application_logs",
- "target": "api_admin_query_parameters_1185"
+ "target": "api_admin_query_parameters_1186"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L1226",
+ "source_location": "L1227",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_application_logs",
- "target": "api_admin_query_parameters_1226"
+ "target": "api_admin_query_parameters_1227"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L1197",
+ "source_location": "L1198",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_application_logs",
- "target": "api_admin_response_200_1197"
+ "target": "api_admin_response_200_1198"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L1234",
+ "source_location": "L1235",
"weight": 1.0,
"confidence_score": 1.0,
- "source": "api_admin_query_parameters_1226",
- "target": "api_admin_response_200_1234"
+ "source": "api_admin_query_parameters_1227",
+ "target": "api_admin_response_200_1235"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/admin.md",
- "source_location": "L1245",
+ "source_location": "L1246",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_admin_delete_api_v1_admin_logs",
- "target": "api_admin_response_200_1245"
+ "target": "api_admin_response_200_1246"
},
{
"relation": "contains",
@@ -212065,9 +217758,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L392",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_clinic_doctor_invitation_api",
- "target": "api_clinic_invitation_web_pages_html_twig_sms_link_target",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_web_pages_html_twig_sms_link_target"
},
{
"relation": "contains",
@@ -212115,9 +217808,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L119",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations",
- "target": "api_clinic_invitation_errors_119",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_119"
},
{
"relation": "contains",
@@ -212125,9 +217818,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L73",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_admin_clinic_uuid_invitations",
- "target": "api_clinic_invitation_path_parameters_73",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_73"
},
{
"relation": "contains",
@@ -212155,9 +217848,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L147",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend",
- "target": "api_clinic_invitation_errors_147",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_147"
},
{
"relation": "contains",
@@ -212165,9 +217858,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L134",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend",
- "target": "api_clinic_invitation_path_parameters_134",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_134"
},
{
"relation": "contains",
@@ -212175,9 +217868,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L139",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_admin_clinic_invitation_invuuid_resend",
- "target": "api_clinic_invitation_response_200_139",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_139"
},
{
"relation": "contains",
@@ -212185,9 +217878,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L186",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status",
- "target": "api_clinic_invitation_errors_186",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_186"
},
{
"relation": "contains",
@@ -212195,9 +217888,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L162",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status",
- "target": "api_clinic_invitation_path_parameters_162",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_162"
},
{
"relation": "contains",
@@ -212215,9 +217908,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L178",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_patch_api_v1_admin_clinic_invitation_invuuid_status",
- "target": "api_clinic_invitation_response_200_178",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_178"
},
{
"relation": "contains",
@@ -212225,9 +217918,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L210",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid",
- "target": "api_clinic_invitation_errors_210",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_210"
},
{
"relation": "contains",
@@ -212235,9 +217928,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L202",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_delete_api_v1_admin_clinic_invitation_invuuid",
- "target": "api_clinic_invitation_path_parameters_202",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_202"
},
{
"relation": "contains",
@@ -212255,9 +217948,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L256",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_clinic_invitation_token",
- "target": "api_clinic_invitation_errors_256",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_256"
},
{
"relation": "contains",
@@ -212265,9 +217958,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L225",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_clinic_invitation_token",
- "target": "api_clinic_invitation_path_parameters_225",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_225"
},
{
"relation": "contains",
@@ -212275,9 +217968,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L230",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_clinic_invitation_token",
- "target": "api_clinic_invitation_response_200_230",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_230"
},
{
"relation": "contains",
@@ -212285,9 +217978,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L284",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept",
- "target": "api_clinic_invitation_errors_284",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_284"
},
{
"relation": "contains",
@@ -212295,9 +217988,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L271",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept",
- "target": "api_clinic_invitation_path_parameters_271",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_271"
},
{
"relation": "contains",
@@ -212305,9 +217998,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L276",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_accept",
- "target": "api_clinic_invitation_response_200_276",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_276"
},
{
"relation": "contains",
@@ -212315,9 +218008,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L311",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject",
- "target": "api_clinic_invitation_errors_311",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_311"
},
{
"relation": "contains",
@@ -212325,9 +218018,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L298",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject",
- "target": "api_clinic_invitation_path_parameters_298",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_298"
},
{
"relation": "contains",
@@ -212335,9 +218028,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L303",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_clinic_invitation_token_reject",
- "target": "api_clinic_invitation_response_200_303",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_303"
},
{
"relation": "contains",
@@ -212345,9 +218038,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L347",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_doctor_invitations",
- "target": "api_clinic_invitation_errors_347",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_347"
},
{
"relation": "contains",
@@ -212355,9 +218048,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L325",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_get_api_v1_doctor_invitations",
- "target": "api_clinic_invitation_response_200_325",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_325"
},
{
"relation": "contains",
@@ -212365,9 +218058,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L383",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond",
- "target": "api_clinic_invitation_errors_383",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_errors_383"
},
{
"relation": "contains",
@@ -212375,9 +218068,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L362",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond",
- "target": "api_clinic_invitation_path_parameters_362",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_path_parameters_362"
},
{
"relation": "contains",
@@ -212385,9 +218078,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L367",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond",
- "target": "api_clinic_invitation_request_body_367",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_request_body_367"
},
{
"relation": "contains",
@@ -212395,9 +218088,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L375",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_post_api_v1_doctor_invitation_invuuid_respond",
- "target": "api_clinic_invitation_response_200_375",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_response_200_375"
},
{
"relation": "contains",
@@ -212405,9 +218098,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L396",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_web_pages_html_twig_sms_link_target",
- "target": "api_clinic_invitation_get_i_token_and_alias_get_clinic_invitation_token",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_get_i_token_and_alias_get_clinic_invitation_token"
},
{
"relation": "contains",
@@ -212415,9 +218108,9 @@
"source_file": "docs/api/clinic-invitation.md",
"source_location": "L404",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_clinic_invitation_web_pages_html_twig_sms_link_target",
- "target": "api_clinic_invitation_post_clinic_invitation_token_respond",
- "confidence_score": 1.0
+ "target": "api_clinic_invitation_post_clinic_invitation_token_respond"
},
{
"relation": "contains",
@@ -213149,15 +218842,155 @@
"source": "api_dashboard_get_api_v1_admin_dashboard_charts",
"target": "api_dashboard_response_200_211"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L1",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim",
+ "target": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L141",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_env_\u0647\u0627\u06cc_\u0645\u0631\u062a\u0628\u0637"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L108",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_get_api_v1_admin_doctor_claims"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L25",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L100",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_post_api_v1_admin_doctors_uuid_transfer"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L40",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_post_api_v1_doctor_uuid_claim"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L148",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_\u062a\u0633\u062a_\u0647\u0627"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L12",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_doctor_profile_claim_api_\u062a\u0635\u0627\u062d\u0628_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644_\u067e\u0632\u0634\u06a9_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u0634\u062f\u0647",
+ "target": "api_doctor_claim_\u0686\u0631\u062e\u0647_\u0648\u0636\u0639\u06cc\u062a"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L29",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_get_api_v1_doctor_uuid_claim_info",
+ "target": "api_doctor_claim_response_200"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L85",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_post_api_v1_doctor_uuid_claim",
+ "target": "api_doctor_claim_errors"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L45",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_post_api_v1_doctor_uuid_claim",
+ "target": "api_doctor_claim_request"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L78",
+ "weight": 1.0,
+ "source": "api_doctor_claim_post_api_v1_doctor_uuid_claim",
+ "target": "api_doctor_claim_response_200_78",
+ "confidence_score": 1.0
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L61",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_post_api_v1_doctor_uuid_claim",
+ "target": "api_doctor_claim_\u0645\u0631\u0627\u062d\u0644_\u0633\u0631\u0648\u0631_\u0627\u062a\u0645\u06cc\u06a9_\u0636\u062f_race"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-claim.md",
+ "source_location": "L117",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_claim_get_api_v1_admin_doctor_claims",
+ "target": "api_doctor_claim_response_200_paginated"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor-import.md",
"source_location": "L1",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import",
- "target": "api_doctor_import_doctor_import_irimc_api",
- "confidence_score": 1.0
+ "target": "api_doctor_import_doctor_import_irimc_api"
},
{
"relation": "contains",
@@ -213165,9 +218998,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L31",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_idempotency",
- "confidence_score": 1.0
+ "target": "api_doctor_import_idempotency"
},
{
"relation": "contains",
@@ -213175,9 +219008,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L42",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_request",
- "confidence_score": 1.0
+ "target": "api_doctor_import_request"
},
{
"relation": "contains",
@@ -213185,9 +219018,19 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L75",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_response",
- "confidence_score": 1.0
+ "target": "api_doctor_import_response"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L113",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_import_doctor_import_irimc_api",
+ "target": "api_doctor_import_\u0627\u0646\u062a\u0642\u0627\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0628\u0647_\u067e\u0632\u0634\u06a9_\u0648\u0627\u0642\u0639\u06cc"
},
{
"relation": "contains",
@@ -213195,9 +219038,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L99",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
- "confidence_score": 1.0
+ "target": "api_doctor_import_\u0639\u06a9\u0633_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
},
{
"relation": "contains",
@@ -213205,9 +219048,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L17",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors",
- "confidence_score": 1.0
+ "target": "api_doctor_import_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u0633\u062a\u0648\u0646_\u0647\u0627\u06cc_\u062c\u062f\u06cc\u062f_doctors"
},
{
"relation": "contains",
@@ -213215,9 +219058,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L110",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_doctor_import_irimc_api",
- "target": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
- "confidence_score": 1.0
+ "target": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631"
},
{
"relation": "contains",
@@ -213225,9 +219068,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L82",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_response",
- "target": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f",
- "confidence_score": 1.0
+ "target": "api_doctor_import_200_ok_\u0628\u0647_\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc_\u0634\u062f"
},
{
"relation": "contains",
@@ -213235,9 +219078,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L87",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_response",
- "target": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647",
- "confidence_score": 1.0
+ "target": "api_doctor_import_200_ok_\u0631\u062f_\u0628\u0647_\u062f\u0644\u06cc\u0644_\u062a\u0635\u0627\u062d\u0628_\u0634\u062f\u0647"
},
{
"relation": "contains",
@@ -213245,9 +219088,9 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L77",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_response",
- "target": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f",
- "confidence_score": 1.0
+ "target": "api_doctor_import_201_created_\u0633\u0627\u062e\u062a\u0647_\u0634\u062f"
},
{
"relation": "contains",
@@ -213255,9 +219098,49 @@
"source_file": "docs/api/doctor-import.md",
"source_location": "L92",
"weight": 1.0,
+ "confidence_score": 1.0,
"source": "api_doctor_import_response",
- "target": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc",
- "confidence_score": 1.0
+ "target": "api_doctor_import_422_\u0627\u0639\u062a\u0628\u0627\u0631\u0633\u0646\u062c\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L183",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
+ "target": "api_doctor_import_backfill_\u0646\u0642\u0634_\u062c\u0627\u0646\u0634\u06cc\u0646_\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L192",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
+ "target": "api_doctor_import_\u0627\u0635\u0644\u0627\u062d_\u0646\u0627\u0645_\u0631\u06a9\u0648\u0631\u062f\u0647\u0627\u06cc_\u0642\u062f\u06cc\u0645\u06cc_\u062d\u0630\u0641_\u067e\u06cc\u0634\u0648\u0646\u062f_\u062f\u06a9\u062a\u0631"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L169",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
+ "target": "api_doctor_import_\u0644\u0627\u06af\u06cc\u0646_\u0633\u0631\u0648\u06cc\u0633\u06cc_captcha"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor-import.md",
+ "source_location": "L201",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_import_\u06a9\u0627\u0631\u0628\u0631_\u0633\u06cc\u0633\u062a\u0645\u06cc_\u0648_\u0686\u0631\u062e\u0647_\u0639\u0645\u0631",
+ "target": "api_doctor_import_\u067e\u0627\u06a9_\u0633\u0627\u0632\u06cc_\u06a9\u0627\u0645\u0644_\u0628\u0631\u0627\u06cc_\u062f\u06cc\u062a\u0627\u0628\u06cc\u0633_\u062a\u0633\u062a"
},
{
"relation": "contains",
@@ -213633,11 +219516,11 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L117",
+ "source_location": "L122",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_doctor_uuid",
- "target": "api_doctor_errors_117"
+ "target": "api_doctor_errors_122"
},
{
"relation": "contains",
@@ -213663,21 +219546,11 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L154",
+ "source_location": "L159",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid",
- "target": "api_doctor_errors_154"
- },
- {
- "relation": "contains",
- "confidence": "EXTRACTED",
- "source_file": "docs/api/doctor.md",
- "source_location": "L130",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid",
- "target": "api_doctor_path_parameters_130"
+ "target": "api_doctor_errors_159"
},
{
"relation": "contains",
@@ -213687,7 +219560,17 @@
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid",
- "target": "api_doctor_response_200_135"
+ "target": "api_doctor_path_parameters_135"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor.md",
+ "source_location": "L140",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_get_api_v1_clinic_my_doctor_doctoruuid",
+ "target": "api_doctor_response_200_140"
},
{
"relation": "contains",
@@ -213713,91 +219596,91 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L191",
+ "source_location": "L196",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_doctors",
- "target": "api_doctor_response_200_191"
+ "target": "api_doctor_response_200_196"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L253",
+ "source_location": "L259",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_doctor_uuid",
- "target": "api_doctor_errors_253"
+ "target": "api_doctor_errors_259"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L226",
+ "source_location": "L232",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_doctor_uuid",
- "target": "api_doctor_path_parameters_226"
+ "target": "api_doctor_path_parameters_232"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L231",
+ "source_location": "L237",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_doctor_uuid",
- "target": "api_doctor_request_body_application_json_231"
+ "target": "api_doctor_request_body_application_json_237"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L250",
+ "source_location": "L256",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_doctor_uuid",
- "target": "api_doctor_response_200_250"
+ "target": "api_doctor_response_200_256"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L285",
+ "source_location": "L291",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_delete_api_v1_doctor_uuid",
- "target": "api_doctor_errors_285"
+ "target": "api_doctor_errors_291"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L272",
+ "source_location": "L278",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_delete_api_v1_doctor_uuid",
- "target": "api_doctor_path_parameters_272"
+ "target": "api_doctor_path_parameters_278"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L277",
+ "source_location": "L283",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_delete_api_v1_doctor_uuid",
- "target": "api_doctor_response_200_277"
+ "target": "api_doctor_response_200_283"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L322",
+ "source_location": "L328",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image",
- "target": "api_doctor_errors_322"
+ "target": "api_doctor_errors_328"
},
{
"relation": "contains",
@@ -213813,41 +219696,41 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L308",
+ "source_location": "L314",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_file_upload_clinic_pro_doctor_field_image",
- "target": "api_doctor_response_200_308"
+ "target": "api_doctor_response_200_314"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L336",
+ "source_location": "L342",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid",
- "target": "api_doctor_path_parameters_336"
+ "target": "api_doctor_path_parameters_342"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L341",
+ "source_location": "L347",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_get_api_v1_clinic_pro_doctor_addresses_doctorid",
- "target": "api_doctor_response_200_341"
+ "target": "api_doctor_response_200_347"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L424",
+ "source_location": "L430",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_api_v1_clinic_pro_doctor_address",
- "target": "api_doctor_errors_424"
+ "target": "api_doctor_errors_430"
},
{
"relation": "contains",
@@ -213863,11 +219746,31 @@
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L409",
+ "source_location": "L415",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_api_v1_clinic_pro_doctor_address",
- "target": "api_doctor_response_201_409"
+ "target": "api_doctor_response_201_415"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor.md",
+ "source_location": "L456",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
+ "target": "api_doctor_errors_456"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/api/doctor.md",
+ "source_location": "L445",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
+ "target": "api_doctor_path_parameters_445"
},
{
"relation": "contains",
@@ -213877,87 +219780,67 @@
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_errors_450"
+ "target": "api_doctor_request_body_450"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L439",
+ "source_location": "L453",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_path_parameters_439"
+ "target": "api_doctor_response_200_453"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L444",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_request_body_444"
- },
- {
- "relation": "contains",
- "confidence": "EXTRACTED",
- "source_file": "docs/api/doctor.md",
- "source_location": "L447",
- "weight": 1.0,
- "confidence_score": 1.0,
- "source": "api_doctor_patch_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_response_200_447"
- },
- {
- "relation": "contains",
- "confidence": "EXTRACTED",
- "source_file": "docs/api/doctor.md",
- "source_location": "L470",
+ "source_location": "L476",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_errors_470"
+ "target": "api_doctor_errors_476"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L465",
+ "source_location": "L471",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_delete_api_v1_clinic_pro_doctor_address_id",
- "target": "api_doctor_response_200_465"
+ "target": "api_doctor_response_200_471"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L493",
+ "source_location": "L499",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid",
- "target": "api_doctor_errors_493"
+ "target": "api_doctor_errors_499"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L485",
+ "source_location": "L491",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid",
- "target": "api_doctor_path_parameters_485"
+ "target": "api_doctor_path_parameters_491"
},
{
"relation": "contains",
"confidence": "EXTRACTED",
"source_file": "docs/api/doctor.md",
- "source_location": "L490",
+ "source_location": "L496",
"weight": 1.0,
"confidence_score": 1.0,
"source": "api_doctor_post_api_v1_clinic_pro_doctor_address_from_clinic_clinicuuid",
- "target": "api_doctor_response_201_490"
+ "target": "api_doctor_response_201_496"
},
{
"relation": "contains",
@@ -222259,6 +228142,106 @@
"source": "scenarios_irimc_doctor_import_ownership_\u06f6_\u0637\u0631\u0627\u062d\u06cc_api_\u0628\u06a9_\u0627\u0646\u062f_clinicpro",
"target": "scenarios_irimc_doctor_import_ownership_\u06f6_\u06f4_\u062a\u0623\u06cc\u06cc\u062f_\u0631\u062f_\u062a\u0648\u0633\u0637_\u0627\u062f\u0645\u06cc\u0646_\u0648_\u0646\u0647\u0627\u06cc\u06cc_\u0633\u0627\u0632\u06cc_\u0627\u0646\u062a\u0642\u0627\u0644"
},
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L1",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L9",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f1_\u0645\u0633\u0626\u0644\u0647_\u0648_\u0645\u062d\u062f\u0648\u062f\u06cc\u062a_\u0647\u0627"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L22",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f2_\u0645\u062f\u0644_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L32",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f3_\u0631\u0627\u0647_\u062d\u0644_\u0627\u0646\u062a\u062e\u0627\u0628_\u0634\u062f\u0647_\u0648_\u062f\u0644\u06cc\u0644_\u0622\u0646"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L42",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f4_\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a_\u0628\u06a9_\u0627\u0646\u062f_clinicpro"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L66",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f5_\u062c\u0631\u06cc\u0627\u0646_\u06a9\u0631\u0627\u0644\u0631_pipeline_py"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L82",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f6_\u0646\u062d\u0648\u0647_\u06cc_\u0627\u062c\u0631\u0627"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L110",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f7_\u0646\u06a9\u062a\u0647_\u06cc_\u0645\u0647\u0645_captcha_\u062f\u0631_\u0644\u0627\u06af\u06cc\u0646"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L120",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f8_\u0641\u0627\u06cc\u0644_\u0647\u0627\u06cc_\u0633\u0627\u062e\u062a\u0647_\u062a\u063a\u06cc\u06cc\u0631_\u06cc\u0627\u0641\u062a\u0647"
+ },
+ {
+ "relation": "contains",
+ "confidence": "EXTRACTED",
+ "source_file": "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md",
+ "source_location": "L134",
+ "weight": 1.0,
+ "confidence_score": 1.0,
+ "source": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u0628\u0647_\u06a9\u0644\u06cc\u0646\u06cc\u06a9_\u067e\u0631\u0648_\u0648_\u0645\u062f\u06cc\u0631\u06cc\u062a_\u0645\u0627\u0644\u06a9\u06cc\u062a_\u067e\u0631\u0648\u0641\u0627\u06cc\u0644",
+ "target": "scenarios_\u0627\u06cc\u0645\u067e\u0648\u0631\u062a_\u067e\u0632\u0634\u06a9\u0627\u0646_\u0646\u0638\u0627\u0645_\u067e\u0632\u0634\u06a9\u06cc_\u06f9_\u0645\u0631\u0627\u062d\u0644_\u0628\u0639\u062f\u06cc_\u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u06cc"
+ },
{
"relation": "contains",
"confidence": "EXTRACTED",
@@ -228301,5 +234284,5 @@
}
],
"hyperedges": [],
- "built_at_commit": "a5e3408e85e3f665657ff3082ebe5661f31e3760"
+ "built_at_commit": "3dcd4f3b264d71a3bff0d8612022fb03dedea687"
}
\ No newline at end of file
diff --git a/graphify-out/manifest.json b/graphify-out/manifest.json
index 471790ca..1c60a3d1 100644
--- a/graphify-out/manifest.json
+++ b/graphify-out/manifest.json
@@ -1,7 +1,7 @@
{
"assets/admin/App.tsx": {
- "mtime": 1782750328.975341,
- "ast_hash": "496200a3a353f2057d3a37621f80aa07",
+ "mtime": 1783757885.6255667,
+ "ast_hash": "69fd74865eefe0cb7c1bfc78a71a0a1e",
"semantic_hash": ""
},
"assets/admin/components/FreeVisitPrice.tsx": {
@@ -30,8 +30,8 @@
"semantic_hash": ""
},
"assets/admin/components/layout/Sidebar.tsx": {
- "mtime": 1783067421.0219867,
- "ast_hash": "61ff8f2939c5c0d3d1aa9c23b75bcdb6",
+ "mtime": 1783757885.626085,
+ "ast_hash": "2f0f7e9608d40b9cda0a0b9412782cca",
"semantic_hash": ""
},
"assets/admin/components/layout/Topbar.tsx": {
@@ -230,8 +230,8 @@
"semantic_hash": ""
},
"assets/admin/pages/DoctorDetailPage.tsx": {
- "mtime": 1783189217.065477,
- "ast_hash": "d10e0ec287b6d42011d384e3e8d8583b",
+ "mtime": 1783768892.4257572,
+ "ast_hash": "9e14c9cc70e4707bddaab0a5267e54c0",
"semantic_hash": ""
},
"assets/admin/pages/DoctorFormPage.tsx": {
@@ -245,8 +245,8 @@
"semantic_hash": ""
},
"assets/admin/pages/DoctorsPage.tsx": {
- "mtime": 1783014538.7828207,
- "ast_hash": "6cf2c963ef00401631e8d519b5f9b0ed",
+ "mtime": 1783757825.0106773,
+ "ast_hash": "d2092c284b360169efff2f5405469893",
"semantic_hash": ""
},
"assets/admin/pages/FinancialReportPage.tsx": {
@@ -810,8 +810,8 @@
"semantic_hash": ""
},
"src/Admin/Controller/AdminApiController.php": {
- "mtime": 1783747617.3699927,
- "ast_hash": "920703ac00621ed56bd030a02c077016",
+ "mtime": 1783757803.148958,
+ "ast_hash": "73acc68912b526d1c608c10b92fac3f0",
"semantic_hash": ""
},
"src/Admin/Controller/AdminController.php": {
@@ -930,8 +930,8 @@
"semantic_hash": ""
},
"src/Auth/Entity/User.php": {
- "mtime": 1782728407.1921442,
- "ast_hash": "c21a256d856199dfa5d76b7c4193306d",
+ "mtime": 1783757329.0757134,
+ "ast_hash": "85cd7c4923a991aab2f1003d8996fc32",
"semantic_hash": ""
},
"src/Auth/Entity/UserActiveContext.php": {
@@ -955,8 +955,8 @@
"semantic_hash": ""
},
"src/Auth/Security/PasswordAuthenticator.php": {
- "mtime": 1783668692.4381845,
- "ast_hash": "e4107ad152265492e7427334d4534b10",
+ "mtime": 1783757329.0759397,
+ "ast_hash": "1c385c3916608095ea2512ac434aca19",
"semantic_hash": ""
},
"src/Auth/Service/OtpService.php": {
@@ -1180,13 +1180,13 @@
"semantic_hash": ""
},
"src/Doctor/Controller/DoctorController.php": {
- "mtime": 1783747336.6328127,
- "ast_hash": "7828b41ebfdf61e887bf38d360c8a8e1",
+ "mtime": 1783769018.613043,
+ "ast_hash": "57c2d4ba148aa5084683dbfd08f8e2b0",
"semantic_hash": ""
},
"src/Doctor/Entity/Doctor.php": {
- "mtime": 1783747550.8134816,
- "ast_hash": "ee77b315870c0299bc02b08b3e3a8726",
+ "mtime": 1783757329.076088,
+ "ast_hash": "e2334ea52505d1b8cc2b69b838fe17ca",
"semantic_hash": ""
},
"src/Doctor/Entity/DoctorAddress.php": {
@@ -1580,8 +1580,8 @@
"semantic_hash": ""
},
"src/Shared/Service/ApiIrService.php": {
- "mtime": 1782750061.8790064,
- "ast_hash": "5fb80e5fce2191b2ece9385cf295b983",
+ "mtime": 1783757329.076324,
+ "ast_hash": "7ee2ccaad6b77b3845258440accf99ee",
"semantic_hash": ""
},
"src/Shared/Service/FileValidatorService.php": {
@@ -2250,8 +2250,8 @@
"semantic_hash": ""
},
"config/packages/rate_limiter.yaml": {
- "mtime": 1781946641.5599158,
- "ast_hash": "9069ae4509af48c36a3905a2070465f9",
+ "mtime": 1783757329.0740077,
+ "ast_hash": "625dc1a0d852d36afd05b4ac60abd6d9",
"semantic_hash": ""
},
"config/packages/routing.yaml": {
@@ -2260,8 +2260,8 @@
"semantic_hash": ""
},
"config/packages/security.yaml": {
- "mtime": 1783669243.3956637,
- "ast_hash": "aa39bbbcb9476e4663f7f7e8e513528c",
+ "mtime": 1783757329.074222,
+ "ast_hash": "d6adafd1b3cf1b7ec18d3c729b70dcb8",
"semantic_hash": ""
},
"config/packages/twig.yaml": {
@@ -2300,8 +2300,8 @@
"semantic_hash": ""
},
"config/services.yaml": {
- "mtime": 1783748202.290563,
- "ast_hash": "cb30b75b2aa9eb8bd44ee757491d35d9",
+ "mtime": 1783757329.0744464,
+ "ast_hash": "feb62c479381915746246b38817892e3",
"semantic_hash": ""
},
"docs/Architecture_Audit.md": {
@@ -2340,8 +2340,8 @@
"semantic_hash": ""
},
"docs/api/admin.md": {
- "mtime": 1783671102.5622253,
- "ast_hash": "878c59042b8a5873afa8346b07830a35",
+ "mtime": 1783757329.0746298,
+ "ast_hash": "1fe7f1b55de999bb218ab72f44360021",
"semantic_hash": ""
},
"docs/api/appointment-settings.md": {
@@ -2395,8 +2395,8 @@
"semantic_hash": ""
},
"docs/api/doctor.md": {
- "mtime": 1783747505.4473846,
- "ast_hash": "59b4a19e6e646fcde2b31cf8cd6ccc46",
+ "mtime": 1783769157.105152,
+ "ast_hash": "572576e30db5b049cb62ba8d54bdf8a5",
"semantic_hash": ""
},
"docs/api/insurance.md": {
@@ -3850,8 +3850,8 @@
"semantic_hash": ""
},
"src/Auth/Command/SystemOwnerCommand.php": {
- "mtime": 1783747644.3113935,
- "ast_hash": "ba2cafb8bf075489371912af24b34757",
+ "mtime": 1783757329.0755038,
+ "ast_hash": "e26afd83ac2085644152496ebc79fbd3",
"semantic_hash": ""
},
".claude/prompt/fix-server-error-logs-20260711.md": {
@@ -3859,11 +3859,6 @@
"ast_hash": "07ba38da8be11ea753c616a29a133070",
"semantic_hash": ""
},
- "docs/scenarios/irimc-doctor-import-ownership.html": {
- "mtime": 1783692949.7169843,
- "ast_hash": "65046faf3fcf2859db97a594fd66aeb1",
- "semantic_hash": ""
- },
"docs/scenarios/irimc-doctor-import-ownership.md": {
"mtime": 1783692850.4494128,
"ast_hash": "94803933a144c487e107395efcf6d764",
@@ -3880,8 +3875,128 @@
"semantic_hash": ""
},
"docs/api/doctor-import.md": {
- "mtime": 1783747979.9276593,
- "ast_hash": "0a30a6d1d4fd4f2584d6315ccf94ef35",
+ "mtime": 1783766160.064325,
+ "ast_hash": "28bb80aa78e7650d0b3e7be75bfc12d0",
+ "semantic_hash": ""
+ },
+ "assets/admin/pages/DoctorClaimsPage.tsx": {
+ "mtime": 1783757859.3423393,
+ "ast_hash": "bf42d9bcc670c4632bb7078fba919b41",
+ "semantic_hash": ""
+ },
+ "migrations/Version20260711150000.php": {
+ "mtime": 1783757329.0904677,
+ "ast_hash": "a4735e00ad698d7b1908c1565f56101b",
+ "semantic_hash": ""
+ },
+ "migrations/Version20260711151000.php": {
+ "mtime": 1783757329.0905693,
+ "ast_hash": "4f19e830c75d8958e6ccac6fa0212d57",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Command/BackfillSurrogateRoleCommand.php": {
+ "mtime": 1783757329.0907202,
+ "ast_hash": "795960477fc1d7bc59527e74777066d8",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Controller/DoctorClaimController.php": {
+ "mtime": 1783768981.0086484,
+ "ast_hash": "997576824b9039e977fd58efb417cf70",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Controller/DoctorImportController.php": {
+ "mtime": 1783757329.0911074,
+ "ast_hash": "78db47cbe57f35d5c5baf17bcc3e3cca",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Entity/DoctorClaimRequest.php": {
+ "mtime": 1783757329.0913296,
+ "ast_hash": "26c3d96b19594bb127aebb1e74df876e",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Repository/DoctorClaimRequestRepository.php": {
+ "mtime": 1783757329.0914319,
+ "ast_hash": "9321165d5ce64d77ea1c20da6f08dc2e",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Service/DoctorClaimService.php": {
+ "mtime": 1783757329.0916033,
+ "ast_hash": "577da8fd4de111aa71e0bdc1c98952ec",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Service/DoctorImportResult.php": {
+ "mtime": 1783757329.0917,
+ "ast_hash": "4300a0647f76835d6913a031faa0e9f2",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Service/DoctorImportService.php": {
+ "mtime": 1783766986.8738186,
+ "ast_hash": "a675ebe7e1acac7da14cc8de3364757e",
+ "semantic_hash": ""
+ },
+ "src/Shared/Util/PersianText.php": {
+ "mtime": 1783765891.9874525,
+ "ast_hash": "477051e58ba2a5a5e9cbf25f3a6992d6",
+ "semantic_hash": ""
+ },
+ "tests/Doctor/DoctorClaimTest.php": {
+ "mtime": 1783769087.937134,
+ "ast_hash": "50ea89c2d246faf98dc843152d51a0c5",
+ "semantic_hash": ""
+ },
+ "tests/Doctor/DoctorImportTest.php": {
+ "mtime": 1783766996.494613,
+ "ast_hash": "997b8d698c8eb4bbf69652bdcead514d",
+ "semantic_hash": ""
+ },
+ "tests/Shared/PersianTextTest.php": {
+ "mtime": 1783765905.1030002,
+ "ast_hash": "c852d71e5f7ab87a0dc9250f9e848bd6",
+ "semantic_hash": ""
+ },
+ ".claude/prompt/irimc-import-complete.md": {
+ "mtime": 1783757329.0736878,
+ "ast_hash": "2d5029751c9bd813a0410e46aebe5eba",
+ "semantic_hash": ""
+ },
+ "docs/api/doctor-claim.md": {
+ "mtime": 1783769130.2951994,
+ "ast_hash": "2f4e095e4e0cac673062cc48b0577d5d",
+ "semantic_hash": ""
+ },
+ "docs/scenarios/climed.md": {
+ "mtime": 1783753889.7651906,
+ "ast_hash": "36deff8609362d99217e415d322df1ac",
+ "semantic_hash": ""
+ },
+ "docs/scenarios/crawler.md": {
+ "mtime": 1783754133.317661,
+ "ast_hash": "86c9447fe38ac680873de5cae4f1db50",
+ "semantic_hash": ""
+ },
+ "docs/scenarios/\u0627\u06cc\u0645\u067e\u0648\u0631\u062a-\u067e\u0632\u0634\u06a9\u0627\u0646-\u0646\u0638\u0627\u0645-\u067e\u0632\u0634\u06a9\u06cc.md": {
+ "mtime": 1783751951.8968952,
+ "ast_hash": "692f883978aaad1f269b5357ba10a5f6",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Command/FixIrimcNamesCommand.php": {
+ "mtime": 1783766017.2526865,
+ "ast_hash": "fb0cad757bf1405c6919159a374e9154",
+ "semantic_hash": ""
+ },
+ "src/Doctor/Command/PurgeDoctorsCommand.php": {
+ "mtime": 1783766065.697639,
+ "ast_hash": "8ba5c9742c92bbf2a0d01d97ee903dd3",
+ "semantic_hash": ""
+ },
+ ".claude/prompt/fix-doctor-name-and-purge.md": {
+ "mtime": 1783765695.1482882,
+ "ast_hash": "b03ab1640dc46aa51114fbc3eba51870",
+ "semantic_hash": ""
+ },
+ ".claude/prompt/doctor-map-claim-captcha-delete.md": {
+ "mtime": 1783768547.5967684,
+ "ast_hash": "d4531629fe5bf2befc994f1a3f2a34ff",
"semantic_hash": ""
}
}
\ No newline at end of file
diff --git a/migrations/Version20260711150000.php b/migrations/Version20260711150000.php
new file mode 100644
index 00000000..0a0fcec3
--- /dev/null
+++ b/migrations/Version20260711150000.php
@@ -0,0 +1,49 @@
+connection->fetchAllAssociative(<<<'SQL'
+ SELECT source, medical_system_code, COUNT(*) c FROM doctors
+ WHERE medical_system_code IS NOT NULL AND medical_system_code <> ''
+ GROUP BY source, medical_system_code HAVING c > 1
+ SQL);
+ $this->abortIf(
+ $dupes !== [],
+ 'Duplicate (source, medical_system_code) rows exist — resolve them manually before adding the unique index: '
+ . json_encode($dupes, JSON_UNESCAPED_UNICODE)
+ );
+
+ $this->addSql('DROP INDEX idx_doctors_source ON doctors');
+ $this->addSql('CREATE UNIQUE INDEX uniq_doctors_source_code ON doctors (source, medical_system_code)');
+ }
+
+ public function down(Schema $schema): void
+ {
+ $this->addSql('DROP INDEX uniq_doctors_source_code ON doctors');
+ $this->addSql('CREATE INDEX idx_doctors_source ON doctors (source, medical_system_code)');
+ }
+}
diff --git a/migrations/Version20260711151000.php b/migrations/Version20260711151000.php
new file mode 100644
index 00000000..369a0541
--- /dev/null
+++ b/migrations/Version20260711151000.php
@@ -0,0 +1,50 @@
+addSql(<<<'SQL'
+ CREATE TABLE doctor_claim_requests (
+ id INT AUTO_INCREMENT NOT NULL,
+ uuid VARCHAR(36) NOT NULL,
+ doctor_id INT NOT NULL,
+ user_id INT DEFAULT NULL,
+ status VARCHAR(20) NOT NULL,
+ national_code_hash VARCHAR(64) NOT NULL,
+ mobile_masked VARCHAR(15) NOT NULL,
+ verification_method VARCHAR(40) NOT NULL,
+ failure_reason VARCHAR(100) DEFAULT NULL,
+ created_at INT NOT NULL,
+ completed_at INT DEFAULT NULL,
+ UNIQUE INDEX UNIQ_claim_uuid (uuid),
+ INDEX idx_claim_doctor_status (doctor_id, status),
+ INDEX IDX_claim_user (user_id),
+ PRIMARY KEY(id)
+ ) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB
+ SQL);
+ $this->addSql('ALTER TABLE doctor_claim_requests ADD CONSTRAINT FK_claim_doctor FOREIGN KEY (doctor_id) REFERENCES doctors (id) ON DELETE CASCADE');
+ $this->addSql('ALTER TABLE doctor_claim_requests ADD CONSTRAINT FK_claim_user FOREIGN KEY (user_id) REFERENCES users (id) ON DELETE SET NULL');
+ }
+
+ public function down(Schema $schema): void
+ {
+ $this->addSql('DROP TABLE doctor_claim_requests');
+ }
+}
diff --git a/src/Admin/Controller/AdminApiController.php b/src/Admin/Controller/AdminApiController.php
index ba8b54e4..dfad0cca 100644
--- a/src/Admin/Controller/AdminApiController.php
+++ b/src/Admin/Controller/AdminApiController.php
@@ -7,10 +7,8 @@ use App\Shared\Constant\ErrorCodes;
use App\Appointment\Repository\SlotTakenException;
use App\Auth\Entity\User;
use App\Shared\Service\InputValidator;
-use App\Location\Entity\City;
use App\Clinic\Entity\Clinic;
use App\Doctor\Entity\Doctor;
-use App\Location\Entity\Province;
use App\Specialty\Entity\Specialty;
use App\Payment\Entity\Payment;
use App\Rating\Entity\Comment;
@@ -326,6 +324,11 @@ class AdminApiController extends BaseController
$where[] = 'd.gender = :gender';
$params['gender'] = $gender;
}
+ $ownerStatus = trim((string) $request->query->get('owner_status', ''));
+ if (in_array($ownerStatus, ['claimed', 'unclaimed', 'pending_transfer'], true)) {
+ $where[] = 'd.owner_status = :ownerStatus';
+ $params['ownerStatus'] = $ownerStatus;
+ }
if ($specId > 0) {
$where[] = 'EXISTS (SELECT 1 FROM doctor_specialties ds2 WHERE ds2.doctor_id = d.id AND ds2.specialty_id = :specId)';
$params['specId'] = $specId;
@@ -348,6 +351,7 @@ class AdminApiController extends BaseController
"SELECT d.id, d.uuid, d.name, d.gender, d.degree, d.medical_system_code,
d.mobile_number as doctor_mobile, d.active_doctor_appointment,
d.doctor_rate, d.doctor_rate_percentage, d.images, d.created_at,
+ d.owner_status, d.source,
u.mobile_number as user_mobile, u.email
FROM doctors d JOIN users u ON u.id = d.user_id
WHERE $whereStr ORDER BY $orderBy LIMIT $limit OFFSET $offset",
@@ -379,6 +383,8 @@ class AdminApiController extends BaseController
'mobile' => $d['doctor_mobile'] ?: $d['user_mobile'],
'email' => $d['email'],
'is_active' => (bool) $d['active_doctor_appointment'],
+ 'owner_status' => $d['owner_status'],
+ 'source' => $d['source'],
'rate' => (float) $d['doctor_rate'],
'specialties' => $specMap[(int) $d['id']] ?? [],
'profile_image' => !empty($images) ? ($images[0]['url'] ?? null) : null,
@@ -444,129 +450,6 @@ class AdminApiController extends BaseController
return $this->success(['uuid' => $doctor->getUuid()], 201);
}
- /**
- * ایمپورت یک پزشک از سازمان نظام پزشکی (بدون شماره موبایل).
- *
- * برخلاف createDoctor، این اندپوینت موبایل نمیخواهد: برای هر پزشک یک «کاربر
- * جانشین» غیرفعال با شناسهٔ مصنوعی ساخته میشود و پروفایل در وضعیت unclaimed
- * ذخیره میگردد تا بعداً به پزشک واقعی منتقل شود. idempotent بر پایهٔ
- * (source, medical_system_code): اجرای مجدد، رکورد موجود را بهروزرسانی میکند.
- */
- #[OA\Post(
- path: '/api/v1/admin/doctors/import',
- summary: 'Import an IRIMC doctor without a mobile number (unclaimed profile)',
- security: [['bearerAuth' => []]],
- requestBody: new OA\RequestBody(
- required: true,
- content: new OA\JsonContent(
- required: ['name', 'medical_system_code'],
- properties: [
- new OA\Property(property: 'name', type: 'string'),
- new OA\Property(property: 'medical_system_code', type: 'string'),
- new OA\Property(property: 'source', type: 'string', default: 'irimc'),
- new OA\Property(property: 'source_ref', type: 'string', nullable: true, description: 'profile_url یا شناسهٔ مبدأ'),
- new OA\Property(property: 'gender', type: 'string', nullable: true),
- new OA\Property(property: 'degree', type: 'string', nullable: true),
- new OA\Property(property: 'info', type: 'string', nullable: true),
- new OA\Property(property: 'specialties', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
- new OA\Property(property: 'states', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
- new OA\Property(property: 'cities', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
- ]
- )
- ),
- responses: [
- new OA\Response(response: 201, description: 'Doctor imported (created)'),
- new OA\Response(response: 200, description: 'Doctor already existed (updated or skipped)'),
- new OA\Response(response: 422, description: 'Validation error'),
- ]
- )]
- #[Route('/api/v1/admin/doctors/import', methods: ['POST'])]
- public function importDoctor(Request $request, #[CurrentUser] User $admin): JsonResponse
- {
- $data = json_decode($request->getContent(), true) ?? [];
- $name = trim((string) ($data['name'] ?? ''));
- $code = trim((string) ($data['medical_system_code'] ?? $data['medicalSystemCode'] ?? ''));
- $source = trim((string) ($data['source'] ?? 'irimc')) ?: 'irimc';
-
- if ($name === '') {
- return $this->error(ErrorCodes::VALIDATION, 'نام الزامی است', 422, 'name');
- }
- if ($code === '') {
- return $this->error(ErrorCodes::VALIDATION, 'کد نظام پزشکی الزامی است', 422, 'medical_system_code');
- }
-
- $doctorRepo = $this->em->getRepository(Doctor::class);
- $userRepo = $this->em->getRepository(User::class);
-
- // idempotency: همان پزشکِ منبع → بهروزرسانی، نه ساخت تکراری
- $doctor = $doctorRepo->findOneBy(['source' => $source, 'medicalSystemCode' => $code]);
- $created = false;
-
- // پروفایل تصاحبشده را با ایمپورت مجدد بازنویسی نکن (مالک واقعی اولویت دارد)
- if ($doctor !== null && $doctor->getOwnerStatus() === 'claimed') {
- return $this->success(['uuid' => $doctor->getUuid(), 'created' => false, 'skipped' => 'claimed']);
- }
-
- if ($doctor === null) {
- // کاربر جانشینِ یکتا و غیرفعال؛ شناسهٔ مصنوعی قطعی از روی کد نظام پزشکی
- $synthetic = 'imp_' . substr(md5($source . ':' . $code), 0, 14); // ≤ ۱۸ کاراکتر، ASCII، یکتا
- $user = $userRepo->findOneBy(['mobileNumber' => $synthetic]);
- if ($user === null) {
- $user = new User($synthetic);
- $user->setRealName($name);
- $user->setStatus(0); // جانشین: هرگز لاگین نمیکند
- $this->em->persist($user);
- }
- $doctor = new Doctor($user, $name);
- $doctor->setSource($source);
- $doctor->setOwnerStatus('unclaimed');
- $doctor->setActiveDoctorAppointment(false); // تا مالک واقعی برنامهٔ کاری بسازد
- $created = true;
- }
-
- // فیلدهای مشترک
- $doctor->setName($name);
- $doctor->setMedicalSystemCode($code);
- $doctor->setManagedBy($admin->getId());
- if (array_key_exists('source_ref', $data) || array_key_exists('profile_url', $data)) {
- $doctor->setSourceRef($data['source_ref'] ?? $data['profile_url'] ?? null);
- }
- if (!empty($data['gender'])) $doctor->setGender($data['gender']);
- if (!empty($data['degree'])) $doctor->setDegree($data['degree']);
- if (array_key_exists('info', $data)) $doctor->setInfo($data['info']);
-
- // روابط بر پایهٔ شناسههای مرجع (تخصص/استان/شهر)
- $this->syncRefCollection($doctor->getSpecialties(), $data['specialties'] ?? null, Specialty::class);
- $this->syncRefCollection($doctor->getProvinces(), $data['states'] ?? null, Province::class);
- $this->syncRefCollection($doctor->getCities(), $data['cities'] ?? null, City::class);
-
- $this->em->persist($doctor);
- $this->em->flush();
-
- return $this->success(
- ['uuid' => $doctor->getUuid(), 'created' => $created],
- $created ? 201 : 200
- );
- }
-
- /**
- * یک مجموعهٔ ManyToMany پزشک را با آرایهای از شناسههای مرجع همگام میکند.
- * اگر $ids null باشد دست نمیخورد؛ اگر آرایه باشد، پاک و از نو پر میشود.
- */
- private function syncRefCollection(\Doctrine\Common\Collections\Collection $col, ?array $ids, string $class): void
- {
- if ($ids === null) {
- return;
- }
- $col->clear();
- foreach ($ids as $id) {
- $ref = $this->em->getRepository($class)->find((int) $id);
- if ($ref !== null && !$col->contains($ref)) {
- $col->add($ref);
- }
- }
- }
-
// ── Clinics ───────────────────────────────────────────────────────────────
#[Route('/api/v1/admin/clinics', methods: ['GET'])]
diff --git a/src/Auth/Command/SystemOwnerCommand.php b/src/Auth/Command/SystemOwnerCommand.php
index f69f330f..df3404b0 100644
--- a/src/Auth/Command/SystemOwnerCommand.php
+++ b/src/Auth/Command/SystemOwnerCommand.php
@@ -70,11 +70,17 @@ class SystemOwnerCommand extends Command
}
}
+ // least privilege: کاربر سیستمی فقط ROLE_IMPORTER میگیرد (دسترسی فقط به اندپوینت
+ // ایمپورت پزشک). اگر از نسخههای قبلی ROLE_ADMIN دارد، حذف میشود.
$roles = $user->getRoles();
- if (!in_array('ROLE_ADMIN', $roles, true)) {
- $roles[] = 'ROLE_ADMIN';
- $user->setRoles(array_values(array_unique($roles)));
+ if (in_array('ROLE_ADMIN', $roles, true)) {
+ $roles = array_values(array_diff($roles, ['ROLE_ADMIN']));
+ $io->note('ROLE_ADMIN از کاربر سیستمی حذف شد (least privilege).');
}
+ if (!in_array('ROLE_IMPORTER', $roles, true)) {
+ $roles[] = 'ROLE_IMPORTER';
+ }
+ $user->setRoles(array_values(array_unique($roles)));
if ($password !== null) {
$user->setPasswordHash($this->hasher->hashPassword($user, (string) $password));
diff --git a/src/Auth/Entity/User.php b/src/Auth/Entity/User.php
index 2985bf1e..63624988 100644
--- a/src/Auth/Entity/User.php
+++ b/src/Auth/Entity/User.php
@@ -121,6 +121,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface
return $this->hasRole('ROLE_DOCTOR')
|| $this->hasRole('ROLE_CLINIC')
|| $this->hasRole('ROLE_SECRETARY')
- || $this->hasRole('ROLE_ADMIN');
+ || $this->hasRole('ROLE_ADMIN')
+ || $this->hasRole('ROLE_IMPORTER'); // کاربر سیستمی کرالر — لاگین با رمز؛ دسترسی فقط اندپوینت ایمپورت
}
}
diff --git a/src/Auth/Security/PasswordAuthenticator.php b/src/Auth/Security/PasswordAuthenticator.php
index c981b595..36d683b4 100644
--- a/src/Auth/Security/PasswordAuthenticator.php
+++ b/src/Auth/Security/PasswordAuthenticator.php
@@ -30,8 +30,20 @@ class PasswordAuthenticator extends AbstractAuthenticator
private readonly RateLimiterFactory $loginLimiter,
private readonly CaptchaGuard $captcha,
private readonly int $refreshTokenTtl = 2592000,
+ private readonly ?string $crawlerServiceToken = null,
) {}
+ /**
+ * لاگین سرویسی کرالر: هدر X-Service-Token با مقدار env CRAWLER_SERVICE_TOKEN
+ * فقط کپچا را دور میزند — rate limit و اعتبارسنجی رمز دستنخورده میمانند.
+ * env خالی = هیچ bypass (secure by default).
+ */
+ private function isTrustedServiceLogin(Request $request): bool
+ {
+ return ($this->crawlerServiceToken ?? '') !== ''
+ && hash_equals($this->crawlerServiceToken, (string) $request->headers->get('X-Service-Token', ''));
+ }
+
public function supports(Request $request): ?bool
{
return $request->getPathInfo() === '/api/v1/user/login'
@@ -46,7 +58,9 @@ class PasswordAuthenticator extends AbstractAuthenticator
}
// AppException را ExceptionSubscriber به پاسخ 422 با ERR_CAPTCHA_001 تبدیل میکند.
- $this->captcha->assertValid($request);
+ if (!$this->isTrustedServiceLogin($request)) {
+ $this->captcha->assertValid($request);
+ }
$data = json_decode($request->getContent(), true) ?? [];
$mobile = trim($data['mobile_number'] ?? '');
diff --git a/src/Doctor/Command/BackfillSurrogateRoleCommand.php b/src/Doctor/Command/BackfillSurrogateRoleCommand.php
new file mode 100644
index 00000000..66f35ced
--- /dev/null
+++ b/src/Doctor/Command/BackfillSurrogateRoleCommand.php
@@ -0,0 +1,76 @@
+addOption('dry-run', null, InputOption::VALUE_NONE, 'Report only, change nothing');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output): int
+ {
+ $io = new SymfonyStyle($input, $output);
+ $dryRun = (bool) $input->getOption('dry-run');
+
+ /** @var User[] $surrogates */
+ $surrogates = $this->em->createQueryBuilder()
+ ->select('u')
+ ->from(User::class, 'u')
+ ->join(Doctor::class, 'd', 'WITH', 'd.user = u')
+ ->where("u.mobileNumber LIKE 'imp\\_%'")
+ ->andWhere('u.status = 0')
+ ->andWhere("d.ownerStatus = 'unclaimed'")
+ ->getQuery()
+ ->getResult();
+
+ $updated = 0;
+ foreach ($surrogates as $user) {
+ if ($user->hasRole(DoctorImportService::ROLE_UNCLAIMED_DOCTOR)) {
+ continue;
+ }
+ $updated++;
+ $io->text(sprintf('%s %s', $dryRun ? '[dry-run]' : '[update]', $user->getMobileNumber()));
+ if (!$dryRun) {
+ $user->addRole(DoctorImportService::ROLE_UNCLAIMED_DOCTOR);
+ }
+ }
+
+ if (!$dryRun && $updated > 0) {
+ $this->em->flush();
+ }
+
+ $io->success(sprintf('%d surrogate(s) %s (of %d scanned)', $updated, $dryRun ? 'would be updated' : 'updated', count($surrogates)));
+
+ return Command::SUCCESS;
+ }
+}
diff --git a/src/Doctor/Command/FixIrimcNamesCommand.php b/src/Doctor/Command/FixIrimcNamesCommand.php
new file mode 100644
index 00000000..7a8ef8d5
--- /dev/null
+++ b/src/Doctor/Command/FixIrimcNamesCommand.php
@@ -0,0 +1,70 @@
+addOption('dry-run', null, InputOption::VALUE_NONE, 'Report only, change nothing');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output): int
+ {
+ $io = new SymfonyStyle($input, $output);
+ $dryRun = (bool) $input->getOption('dry-run');
+
+ /** @var Doctor[] $doctors */
+ $doctors = $this->em->getRepository(Doctor::class)->createQueryBuilder('d')
+ ->where('d.source = :src')
+ ->setParameter('src', 'irimc')
+ ->getQuery()
+ ->getResult();
+
+ $fixed = 0;
+ foreach ($doctors as $doctor) {
+ $clean = PersianText::stripDoctorTitle((string) $doctor->getName());
+ if ($clean !== '' && $clean !== $doctor->getName()) {
+ $io->text(sprintf('%s «%s» → «%s»', $dryRun ? '[dry-run]' : '[fix]', $doctor->getName(), $clean));
+ if (!$dryRun) {
+ $doctor->setName($clean);
+ }
+ $fixed++;
+ }
+ }
+
+ if (!$dryRun && $fixed > 0) {
+ $this->em->flush();
+ }
+
+ $io->success(sprintf('%d نام %s (از %d پزشک IRIMC).', $fixed, $dryRun ? 'قابل اصلاح' : 'اصلاح شد', count($doctors)));
+
+ return Command::SUCCESS;
+ }
+}
diff --git a/src/Doctor/Command/PurgeDoctorsCommand.php b/src/Doctor/Command/PurgeDoctorsCommand.php
new file mode 100644
index 00000000..c4f4c401
--- /dev/null
+++ b/src/Doctor/Command/PurgeDoctorsCommand.php
@@ -0,0 +1,89 @@
+addOption('force', null, InputOption::VALUE_NONE, 'Actually delete (otherwise dry-run report)');
+ $this->addOption('i-know-this-is-prod', null, InputOption::VALUE_NONE, 'Required to run against APP_ENV=prod');
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output): int
+ {
+ $io = new SymfonyStyle($input, $output);
+ $force = (bool) $input->getOption('force');
+
+ if (($_ENV['APP_ENV'] ?? 'dev') === 'prod' && !$input->getOption('i-know-this-is-prod')) {
+ $io->error('روی prod بدون --i-know-this-is-prod اجرا نمیشود. این عمل دادههای واقعی (نوبت/نظر/پرداخت) را حذف میکند.');
+ return Command::FAILURE;
+ }
+
+ $io->section($force ? 'پاکسازی پزشکان و دادههای وابسته' : 'گزارش (dry-run — چیزی حذف نمیشود)');
+
+ $rows = [];
+ foreach (self::TABLES as $t) {
+ $rows[] = [$t, (int) $this->conn->fetchOne("SELECT COUNT(*) FROM {$t}")];
+ }
+ $io->table(['جدول', 'رکورد'], $rows);
+
+ if (!$force) {
+ $io->warning('برای حذف واقعی، دوباره با --force اجرا کن.');
+ return Command::SUCCESS;
+ }
+
+ $this->conn->executeStatement('SET FOREIGN_KEY_CHECKS=0');
+ try {
+ foreach (self::TABLES as $t) {
+ $n = $this->conn->executeStatement("DELETE FROM {$t}");
+ $io->text(sprintf('%s: %d حذف شد', $t, $n));
+ }
+ // کاربران جانشینِ ایمپورت (imp_..., غیرفعال) که اکنون یتیماند
+ $surrogates = $this->conn->executeStatement(
+ "DELETE FROM users WHERE mobile_number LIKE 'imp\\_%' AND status = 0"
+ );
+ $io->text(sprintf('کاربران جانشین: %d حذف شد', $surrogates));
+ } finally {
+ $this->conn->executeStatement('SET FOREIGN_KEY_CHECKS=1');
+ }
+
+ $io->success('دیتابیس پزشکان پاک شد.');
+
+ return Command::SUCCESS;
+ }
+}
diff --git a/src/Doctor/Controller/DoctorClaimController.php b/src/Doctor/Controller/DoctorClaimController.php
new file mode 100644
index 00000000..25c32993
--- /dev/null
+++ b/src/Doctor/Controller/DoctorClaimController.php
@@ -0,0 +1,206 @@
+doctorRepo->findByUuid($uuid);
+ if ($doctor === null) {
+ return $this->error(ErrorCodes::ERR_NOT_FOUND_001, 'پزشک یافت نشد', 404);
+ }
+
+ return $this->success([
+ 'claimable' => $doctor->getOwnerStatus() === 'unclaimed',
+ 'owner_status' => $doctor->getOwnerStatus(),
+ ]);
+ }
+
+ #[OA\Post(
+ path: '/api/v1/doctor/{uuid}/claim',
+ summary: 'Claim an unclaimed (IRIMC-imported) doctor profile after identity verification',
+ security: [['bearerAuth' => []]],
+ requestBody: new OA\RequestBody(
+ required: true,
+ content: new OA\JsonContent(
+ required: ['national_code', 'birth_date', 'first_name', 'last_name'],
+ properties: [
+ new OA\Property(property: 'national_code', type: 'string', example: '0010007700'),
+ new OA\Property(property: 'birth_date', type: 'string', description: 'شمسی Y/m/d', example: '1371/1/1'),
+ new OA\Property(property: 'first_name', type: 'string'),
+ new OA\Property(property: 'last_name', type: 'string'),
+ ]
+ )
+ ),
+ responses: [
+ new OA\Response(response: 200, description: 'Claimed'),
+ new OA\Response(response: 409, description: 'Not claimable / user already owns a doctor'),
+ new OA\Response(response: 422, description: 'Validation or identity mismatch'),
+ new OA\Response(response: 429, description: 'Rate limited'),
+ new OA\Response(response: 502, description: 'Identity provider unavailable'),
+ ]
+ )]
+ #[Route('/api/v1/doctor/{uuid}/claim', methods: ['POST'])]
+ #[IsGranted('IS_AUTHENTICATED_FULLY')]
+ public function claim(string $uuid, Request $request, #[CurrentUser] User $user): JsonResponse
+ {
+ $limiter = $this->doctorClaimLimiter->create('claim_' . $user->getId() . '_' . $uuid);
+ $limit = $limiter->consume();
+ if (!$limit->isAccepted()) {
+ throw new TooManyRequestsHttpException($limit->getRetryAfter()->getTimestamp() - time());
+ }
+
+ // کپچای ALTCHA (در dev با ALTCHA_ENABLED=false بیاثر) — خطا → ERR_CAPTCHA_001 (422)
+ $this->captcha->assertValid($request);
+
+ $doctor = $this->doctorRepo->findByUuid($uuid);
+ if ($doctor === null) {
+ return $this->error(ErrorCodes::ERR_NOT_FOUND_001, 'پزشک یافت نشد', 404);
+ }
+
+ $data = json_decode($request->getContent(), true) ?? [];
+ $nationalCode = preg_replace('/\D/', '', \App\Shared\Util\PersianText::normalize((string) ($data['national_code'] ?? '')));
+ $birthDate = trim(\App\Shared\Util\PersianText::normalize((string) ($data['birth_date'] ?? '')));
+ $firstName = trim((string) ($data['first_name'] ?? ''));
+ $lastName = trim((string) ($data['last_name'] ?? ''));
+ $mobile = preg_replace('/\D/', '', \App\Shared\Util\PersianText::normalize((string) ($data['mobile'] ?? '')));
+
+ if ($mobile !== '' && $mobile !== $user->getMobileNumber()) {
+ return $this->error(ErrorCodes::ERR_CONFLICT_001, 'شماره موبایل باید با حساب کاربری شما یکی باشد', 422, 'mobile');
+ }
+ if (!preg_match('/^\d{10}$/', $nationalCode)) {
+ return $this->error(ErrorCodes::ERR_VALIDATION_001, 'کد ملی نامعتبر است', 422, 'national_code');
+ }
+ if (!preg_match('~^1[34]\d{2}/\d{1,2}/\d{1,2}$~', $birthDate)) {
+ return $this->error(ErrorCodes::ERR_VALIDATION_001, 'تاریخ تولد نامعتبر است (مثال: 1371/1/1)', 422, 'birth_date');
+ }
+ if ($firstName === '' || $lastName === '') {
+ return $this->error(ErrorCodes::ERR_VALIDATION_002, 'نام و نام خانوادگی الزامی است', 422);
+ }
+
+ $claim = $this->claimService->claim($doctor, $user, $nationalCode, $birthDate, $firstName, $lastName);
+
+ return $this->success([
+ 'status' => 'claimed',
+ 'claim' => ['uuid' => $claim->getUuid()],
+ 'doctor' => ['uuid' => $doctor->getUuid(), 'name' => $doctor->getName()],
+ ]);
+ }
+
+ #[OA\Post(
+ path: '/api/v1/admin/doctors/{uuid}/transfer',
+ summary: 'Manually transfer an unclaimed doctor profile to a real user (admin support tool)',
+ security: [['bearerAuth' => []]],
+ requestBody: new OA\RequestBody(
+ required: true,
+ content: new OA\JsonContent(
+ required: ['mobile'],
+ properties: [new OA\Property(property: 'mobile', type: 'string', example: '09121234567')]
+ )
+ ),
+ responses: [
+ new OA\Response(response: 200, description: 'Transferred'),
+ new OA\Response(response: 404, description: 'Doctor not found'),
+ new OA\Response(response: 409, description: 'Already claimed / target user owns another doctor'),
+ new OA\Response(response: 422, description: 'Invalid mobile'),
+ ]
+ )]
+ #[Route('/api/v1/admin/doctors/{uuid}/transfer', methods: ['POST'])]
+ #[IsGranted('ROLE_ADMIN')]
+ public function transfer(string $uuid, Request $request): JsonResponse
+ {
+ $doctor = $this->doctorRepo->findByUuid($uuid);
+ if ($doctor === null) {
+ return $this->error(ErrorCodes::ERR_NOT_FOUND_001, 'پزشک یافت نشد', 404);
+ }
+
+ $data = json_decode($request->getContent(), true) ?? [];
+ $mobile = trim((string) ($data['mobile'] ?? ''));
+ if (!preg_match('/^09\d{9}$/', $mobile)) {
+ return $this->error(ErrorCodes::ERR_VALIDATION_001, 'شماره موبایل نامعتبر است', 422, 'mobile');
+ }
+
+ $claim = $this->claimService->transferByAdmin($doctor, $mobile);
+
+ return $this->success([
+ 'uuid' => $doctor->getUuid(),
+ 'owner_status' => $doctor->getOwnerStatus(),
+ 'user_mobile' => $mobile,
+ 'claim' => ['uuid' => $claim->getUuid()],
+ ]);
+ }
+
+ #[OA\Get(
+ path: '/api/v1/admin/doctor-claims',
+ summary: 'Paginated audit list of doctor profile claim requests',
+ security: [['bearerAuth' => []]],
+ parameters: [
+ new OA\Parameter(name: 'status', in: 'query', schema: new OA\Schema(type: 'string', enum: ['pending', 'completed', 'failed'])),
+ new OA\Parameter(name: 'page', in: 'query', schema: new OA\Schema(type: 'integer', default: 1)),
+ new OA\Parameter(name: 'limit', in: 'query', schema: new OA\Schema(type: 'integer', default: 20)),
+ ],
+ responses: [new OA\Response(response: 200, description: 'Paginated claim requests')]
+ )]
+ #[Route('/api/v1/admin/doctor-claims', methods: ['GET'])]
+ #[IsGranted('ROLE_ADMIN')]
+ public function claimsList(Request $request): JsonResponse
+ {
+ $page = max(1, (int) $request->query->get('page', 1));
+ $limit = min(50, max(1, (int) $request->query->get('limit', 20)));
+ $status = trim((string) $request->query->get('status', ''));
+
+ $qb = $this->claimRepo->createQueryBuilder('c')
+ ->orderBy('c.createdAt', 'DESC');
+
+ if (in_array($status, [\App\Doctor\Entity\DoctorClaimRequest::STATUS_PENDING, \App\Doctor\Entity\DoctorClaimRequest::STATUS_COMPLETED, \App\Doctor\Entity\DoctorClaimRequest::STATUS_FAILED], true)) {
+ $qb->andWhere('c.status = :status')->setParameter('status', $status);
+ }
+
+ $total = (int) (clone $qb)->select('COUNT(c.id)')->getQuery()->getSingleScalarResult();
+
+ $items = $qb->setFirstResult(($page - 1) * $limit)
+ ->setMaxResults($limit)
+ ->getQuery()
+ ->getResult();
+
+ return $this->paginated(
+ array_map(fn(\App\Doctor\Entity\DoctorClaimRequest $c) => $c->toArray(), $items),
+ $total,
+ $page,
+ $limit
+ );
+ }
+}
diff --git a/src/Doctor/Controller/DoctorController.php b/src/Doctor/Controller/DoctorController.php
index 31ad669b..6d69956e 100644
--- a/src/Doctor/Controller/DoctorController.php
+++ b/src/Doctor/Controller/DoctorController.php
@@ -368,14 +368,20 @@ class DoctorController extends BaseController
]
)]
#[Route('/api/v1/doctor/{uuid}', methods: ['DELETE'])]
- #[IsGranted('ROLE_ADMIN')]
- public function delete(string $uuid): JsonResponse
+ #[IsGranted('IS_AUTHENTICATED_FULLY')]
+ public function delete(string $uuid, #[CurrentUser] User $user): JsonResponse
{
$doctor = $this->doctorRepo->findByUuid($uuid);
if ($doctor === null) {
return $this->error(ErrorCodes::ERR_VALIDATION_002, 'دکتر یافت نشد', 404);
}
+ // ادمین هر پروفایلی را؛ مالک فقط پروفایلِ claimedِ خودش را حذف میکند (ضد IDOR)
+ $isOwner = $doctor->getOwnerStatus() === 'claimed' && $doctor->getUser()->getId() === $user->getId();
+ if (!$user->hasRole('ROLE_ADMIN') && !$isOwner) {
+ return $this->error(ErrorCodes::ERR_FORBIDDEN_001, 'اجازهٔ حذف این پروفایل را ندارید', 403);
+ }
+
if ($this->appointmentRepo->count(['doctor' => $doctor]) > 0) {
return $this->error(ErrorCodes::ERR_CONFLICT_001, 'این پزشک نوبت ثبتشده دارد و قابل حذف نیست', 409);
}
diff --git a/src/Doctor/Controller/DoctorImportController.php b/src/Doctor/Controller/DoctorImportController.php
new file mode 100644
index 00000000..15ec6829
--- /dev/null
+++ b/src/Doctor/Controller/DoctorImportController.php
@@ -0,0 +1,86 @@
+ []]],
+ requestBody: new OA\RequestBody(
+ required: true,
+ content: new OA\JsonContent(
+ required: ['name', 'medical_system_code'],
+ properties: [
+ new OA\Property(property: 'name', type: 'string'),
+ new OA\Property(property: 'medical_system_code', type: 'string'),
+ new OA\Property(property: 'source', type: 'string', default: 'irimc'),
+ new OA\Property(property: 'source_ref', type: 'string', nullable: true, description: 'profile_url یا شناسهٔ مبدأ'),
+ new OA\Property(property: 'gender', type: 'string', nullable: true),
+ new OA\Property(property: 'degree', type: 'string', nullable: true),
+ new OA\Property(property: 'info', type: 'string', nullable: true),
+ new OA\Property(property: 'specialties', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
+ new OA\Property(property: 'states', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
+ new OA\Property(property: 'cities', type: 'array', items: new OA\Items(type: 'integer'), nullable: true),
+ ]
+ )
+ ),
+ responses: [
+ new OA\Response(response: 201, description: 'Doctor imported (created)'),
+ new OA\Response(response: 200, description: 'Doctor already existed (updated or skipped)'),
+ new OA\Response(response: 403, description: 'Requires ROLE_ADMIN or ROLE_IMPORTER'),
+ new OA\Response(response: 422, description: 'Validation error'),
+ ]
+ )]
+ #[Route('/api/v1/admin/doctors/import', methods: ['POST'])]
+ public function import(Request $request, #[CurrentUser] User $user): JsonResponse
+ {
+ if (!$this->isGranted('ROLE_ADMIN') && !$this->isGranted('ROLE_IMPORTER')) {
+ return $this->error(ErrorCodes::ERR_FORBIDDEN_001, 'دسترسی به این منبع مجاز نیست', 403);
+ }
+
+ $data = json_decode($request->getContent(), true) ?? [];
+ $name = trim((string) ($data['name'] ?? ''));
+ $code = trim((string) ($data['medical_system_code'] ?? $data['medicalSystemCode'] ?? ''));
+
+ if ($name === '') {
+ return $this->error(ErrorCodes::VALIDATION, 'نام الزامی است', 422, 'name');
+ }
+ if ($code === '') {
+ return $this->error(ErrorCodes::VALIDATION, 'کد نظام پزشکی الزامی است', 422, 'medical_system_code');
+ }
+
+ $result = $this->importService->import($data, $user);
+
+ $payload = ['uuid' => $result->doctor->getUuid(), 'created' => $result->created];
+ if ($result->skipped !== null) {
+ $payload['skipped'] = $result->skipped;
+ }
+
+ return $this->success($payload, $result->created ? 201 : 200);
+ }
+}
diff --git a/src/Doctor/Entity/Doctor.php b/src/Doctor/Entity/Doctor.php
index eda37d10..1a73f018 100644
--- a/src/Doctor/Entity/Doctor.php
+++ b/src/Doctor/Entity/Doctor.php
@@ -17,7 +17,9 @@ use Symfony\Component\Uid\Uuid;
#[ORM\Entity(repositoryClass: DoctorRepository::class)]
#[ORM\Table(name: 'doctors')]
#[ORM\UniqueConstraint(name: 'idx_doctors_user', columns: ['user_id'])]
+#[ORM\UniqueConstraint(name: 'uniq_doctors_source_code', columns: ['source', 'medical_system_code'])]
#[ORM\Index(columns: ['active_doctor_appointment'], name: 'idx_doctors_active')]
+#[ORM\Index(columns: ['owner_status'], name: 'idx_doctors_owner')]
class Doctor
{
public const DEGREES = ['expert', 'general', 'specialist', 'subspecialistplus'];
@@ -79,11 +81,11 @@ class Doctor
// ── Profile ownership (IRIMC import) ───────────────────────────────────────
// owner_status: claimed | unclaimed | pending_transfer
- #[ORM\Column(name: 'owner_status', type: 'string', length: 20)]
+ #[ORM\Column(name: 'owner_status', type: 'string', length: 20, options: ['default' => 'claimed'])]
private string $ownerStatus = 'claimed';
// source: manual | irimc
- #[ORM\Column(type: 'string', length: 20)]
+ #[ORM\Column(type: 'string', length: 20, options: ['default' => 'manual'])]
private string $source = 'manual';
// شناسه رکورد مبدأ (profile_url یا کد نظام پزشکی) برای idempotency و ممیزی
@@ -521,6 +523,7 @@ class Doctor
'free_turn' => $sf['free_turn'],
'hours_of_work' => $sf['hours_of_work'],
'active' => $this->activeDoctorAppointment && $sf['has_schedule'],
+ 'owner_status' => $this->ownerStatus,
];
}
@@ -553,6 +556,7 @@ class Doctor
], $this->services->toArray()),
'satisfaction' => (string) $this->doctorRatePercentage,
'point' => (string) $this->doctorRate,
+ 'owner_status' => $this->ownerStatus,
'free_turn' => $sf['free_turn'],
'hours_of_work' => $sf['hours_of_work'],
'address' => array_map(fn(DoctorAddress $a) => $a->toArray(), $this->addresses->toArray()),
diff --git a/src/Doctor/Entity/DoctorClaimRequest.php b/src/Doctor/Entity/DoctorClaimRequest.php
new file mode 100644
index 00000000..8b8665ed
--- /dev/null
+++ b/src/Doctor/Entity/DoctorClaimRequest.php
@@ -0,0 +1,115 @@
+uuid = Uuid::v4()->toRfc4122();
+ $this->doctor = $doctor;
+ $this->user = $user;
+ $this->nationalCodeHash = hash('sha256', $nationalCode);
+ $this->mobileMasked = self::maskMobile($mobile);
+ $this->verificationMethod = $verificationMethod;
+ $this->createdAt = time();
+ }
+
+ public static function maskMobile(string $mobile): string
+ {
+ return strlen($mobile) >= 7
+ ? substr($mobile, 0, 4) . '***' . substr($mobile, -4)
+ : '***';
+ }
+
+ public function markCompleted(): void
+ {
+ $this->status = self::STATUS_COMPLETED;
+ $this->completedAt = time();
+ }
+
+ public function markFailed(string $reason): void
+ {
+ $this->status = self::STATUS_FAILED;
+ $this->failureReason = mb_substr($reason, 0, 100);
+ $this->completedAt = time();
+ }
+
+ public function getId(): ?int { return $this->id; }
+ public function getUuid(): string { return $this->uuid; }
+ public function getDoctor(): Doctor { return $this->doctor; }
+ public function getUser(): ?User { return $this->user; }
+ public function getStatus(): string { return $this->status; }
+ public function getFailureReason(): ?string { return $this->failureReason; }
+ public function getVerificationMethod(): string { return $this->verificationMethod; }
+ public function getCreatedAt(): int { return $this->createdAt; }
+ public function getCompletedAt(): ?int { return $this->completedAt; }
+
+ public function toArray(): array
+ {
+ return [
+ 'uuid' => $this->uuid,
+ 'status' => $this->status,
+ 'doctor' => ['uuid' => $this->doctor->getUuid(), 'name' => $this->doctor->getName()],
+ 'mobile_masked' => $this->mobileMasked,
+ 'verification_method' => $this->verificationMethod,
+ 'failure_reason' => $this->failureReason,
+ 'created_at' => $this->createdAt,
+ 'completed_at' => $this->completedAt,
+ ];
+ }
+}
diff --git a/src/Doctor/Repository/DoctorClaimRequestRepository.php b/src/Doctor/Repository/DoctorClaimRequestRepository.php
new file mode 100644
index 00000000..cfdc2ffa
--- /dev/null
+++ b/src/Doctor/Repository/DoctorClaimRequestRepository.php
@@ -0,0 +1,15 @@
+apiIr->isConfigured() ? self::METHOD_APIIR_SHAHKAR : self::METHOD_APIIR;
+
+ // مرحلهٔ ۱ — رزرو اتمیک پروفایل زیر قفل (تراکنش کوتاه، بدون فراخوان خارجی)
+ $claim = $this->em->wrapInTransaction(function () use ($doctor, $user, $nationalCode, $method): DoctorClaimRequest {
+ $locked = $this->em->find(Doctor::class, $doctor->getId(), LockMode::PESSIMISTIC_WRITE);
+
+ if ($locked->getOwnerStatus() !== 'unclaimed') {
+ throw new AppException(ErrorCodes::ERR_CONFLICT_001, 'این پروفایل قابل تصاحب نیست یا درخواست دیگری در جریان است', 409);
+ }
+ $existing = $this->em->getRepository(Doctor::class)->findOneBy(['user' => $user]);
+ if ($existing !== null) {
+ throw new AppException(ErrorCodes::ERR_CONFLICT_001, 'شما از قبل یک پروفایل پزشک دارید', 409);
+ }
+ $codeOwner = $this->em->getRepository(User::class)->findOneBy(['nationalCode' => $nationalCode]);
+ if ($codeOwner !== null && $codeOwner->getId() !== $user->getId()) {
+ throw new AppException(ErrorCodes::ERR_PROFILE_NATIONAL_CODE_TAKEN, null, 409);
+ }
+
+ $locked->setOwnerStatus('pending_transfer');
+ $claim = new DoctorClaimRequest($locked, $user, $nationalCode, $user->getMobileNumber(), $method);
+ $this->em->persist($claim);
+
+ return $claim;
+ });
+
+ // مرحلهٔ ۲ — احراز هویت (خارج از قفل)
+ try {
+ $this->verifyIdentity($doctor, $user, $nationalCode, $birthDateJalali, $firstName, $lastName);
+ } catch (AppException $e) {
+ $this->revert($doctor, $claim, $e->getMessage());
+ throw $e;
+ }
+
+ // مرحلهٔ ۳ — نهاییسازی اتمیک
+ $this->finalize($doctor, $user, $claim, $nationalCode);
+
+ // مرحلهٔ ۴ — پیامک خوشآمد (غیر بحرانی؛ شکستش claim را باطل نمیکند)
+ $this->smsService->dispatchTemplate(SmsLog::TAG_WELCOME, $user->getMobileNumber(), [
+ 'name' => PersianText::stripDoctorTitle($doctor->getName()),
+ 'site' => 'نوبت۷۲۴',
+ ]);
+
+ return $claim;
+ }
+
+ /** انتقال دستی توسط ادمین (پشتیبانی) — بدون استعلام هویت؛ کاربر هدف با موبایل پیدا/ساخته میشود. */
+ public function transferByAdmin(Doctor $doctor, string $mobile): DoctorClaimRequest
+ {
+ $claim = $this->em->wrapInTransaction(function () use ($doctor, $mobile): DoctorClaimRequest {
+ $locked = $this->em->find(Doctor::class, $doctor->getId(), LockMode::PESSIMISTIC_WRITE);
+
+ if ($locked->getOwnerStatus() === 'claimed') {
+ throw new AppException(ErrorCodes::ERR_CONFLICT_001, 'این پروفایل قبلاً تصاحب شده است', 409);
+ }
+
+ $userRepo = $this->em->getRepository(User::class);
+ $target = $userRepo->findOneBy(['mobileNumber' => $mobile]);
+ if ($target === null) {
+ $target = new User($mobile);
+ $target->setRealName(PersianText::stripDoctorTitle($locked->getName()));
+ $target->setStatus(1);
+ $this->em->persist($target);
+ }
+
+ $existing = $this->em->getRepository(Doctor::class)->findOneBy(['user' => $target]);
+ if ($existing !== null && $existing->getId() !== $locked->getId()) {
+ throw new AppException(ErrorCodes::ERR_CONFLICT_001, 'این کاربر قبلاً پروفایل پزشک دیگری دارد', 409);
+ }
+
+ $locked->setOwnerStatus('pending_transfer');
+ $claim = new DoctorClaimRequest($locked, $target, '', $mobile, self::METHOD_ADMIN);
+ $this->em->persist($claim);
+
+ return $claim;
+ });
+
+ $this->finalize($doctor, $claim->getUser(), $claim, null);
+
+ return $claim;
+ }
+
+ private function verifyIdentity(Doctor $doctor, User $user, string $nationalCode, string $birthDateJalali, string $firstName, string $lastName): void
+ {
+ // تطبیق موبایل ↔ کد ملی (شاهکار). بدون پیکربندی api.ir استعلام ممکن نیست →
+ // موبایلِ OTP-تأییدشدهٔ کاربر لاگینشده مبنا میماند و فقط PersonInfo چک میشود.
+ if ($this->apiIr->isConfigured() && !$this->apiIr->shahkarMatch($nationalCode, $user->getMobileNumber())) {
+ throw new AppException(ErrorCodes::ERR_NATIONAL_CODE_MISMATCH, null, 422);
+ }
+
+ $person = $this->apiIr->personInfo($nationalCode, $birthDateJalali);
+ if ($person === null || !$person['alive']) {
+ throw new AppException(ErrorCodes::ERR_NATIONAL_CODE_MISMATCH, 'اطلاعات هویتی با سامانهٔ ثبت احوال مطابقت ندارد', 422);
+ }
+
+ // ورودی کاربر ↔ هویت تأییدشده
+ if (!PersianText::sameName($firstName . ' ' . $lastName, $person['firstName'] . ' ' . $person['lastName'])) {
+ throw new AppException(ErrorCodes::ERR_NATIONAL_CODE_MISMATCH, 'نام واردشده با اطلاعات هویتی مطابقت ندارد', 422);
+ }
+
+ // هویت تأییدشده ↔ نام پروفایل ایمپورتشده از نظام پزشکی
+ $profileName = PersianText::stripDoctorTitle($doctor->getName());
+ $verifiedName = PersianText::normalize($person['firstName'] . ' ' . $person['lastName']);
+ if ($profileName !== $verifiedName) {
+ throw new AppException(ErrorCodes::ERR_NATIONAL_CODE_MISMATCH, 'نام شما با نام این پروفایل پزشک مطابقت ندارد', 422);
+ }
+ }
+
+ private function finalize(Doctor $doctor, User $target, DoctorClaimRequest $claim, ?string $nationalCode): void
+ {
+ $surrogate = $this->em->wrapInTransaction(function () use ($doctor, $target, $claim, $nationalCode): ?User {
+ $locked = $this->em->find(Doctor::class, $doctor->getId(), LockMode::PESSIMISTIC_WRITE);
+
+ if ($locked->getOwnerStatus() !== 'pending_transfer') {
+ throw new AppException(ErrorCodes::ERR_CONFLICT_001, 'وضعیت پروفایل در این میان تغییر کرده است', 409);
+ }
+
+ $surrogate = $locked->getUser();
+
+ if ($nationalCode !== null && $nationalCode !== '') {
+ $target->setNationalCode($nationalCode);
+ $target->setNationalCodeVerified(true);
+ }
+ $target->addRole('ROLE_DOCTOR');
+ $locked->transferOwnershipTo($target);
+ $claim->markCompleted();
+
+ return $surrogate;
+ });
+
+ // حذف امن جانشین — پس از flush انتقال، تا شمارش پزشکانِ متصل قطعی باشد
+ if ($surrogate !== null
+ && $surrogate->getId() !== $target->getId()
+ && $surrogate->hasRole(DoctorImportService::ROLE_UNCLAIMED_DOCTOR)
+ && $this->em->getRepository(Doctor::class)->count(['user' => $surrogate]) === 0) {
+ $this->em->remove($surrogate);
+ $this->em->flush();
+ }
+
+ $this->logger->info('doctor profile claimed', [
+ 'claim_uuid' => $claim->getUuid(),
+ 'doctor_uuid' => $doctor->getUuid(),
+ 'user_id' => $target->getId(),
+ 'method' => $claim->getVerificationMethod(),
+ ]);
+ }
+
+ private function revert(Doctor $doctor, DoctorClaimRequest $claim, string $reason): void
+ {
+ $this->em->wrapInTransaction(function () use ($doctor, $claim, $reason): void {
+ $locked = $this->em->find(Doctor::class, $doctor->getId(), LockMode::PESSIMISTIC_WRITE);
+ if ($locked->getOwnerStatus() === 'pending_transfer') {
+ $locked->setOwnerStatus('unclaimed');
+ }
+ $claim->markFailed($reason);
+ });
+ }
+}
diff --git a/src/Doctor/Service/DoctorImportResult.php b/src/Doctor/Service/DoctorImportResult.php
new file mode 100644
index 00000000..1c1c54b5
--- /dev/null
+++ b/src/Doctor/Service/DoctorImportResult.php
@@ -0,0 +1,14 @@
+doImport($data, $importedBy);
+ } catch (UniqueConstraintViolationException) {
+ // برندهٔ همزمانی رکورد را همین الان ساخته (قید uniq_doctors_source_code).
+ // EM پس از این خطا بسته است — reset و اجرای مجدد که اینبار مسیر update را میرود.
+ $this->registry->resetManager();
+ return $this->doImport($data, $importedBy);
+ }
+ }
+
+ private function doImport(array $data, User $importedBy): DoctorImportResult
+ {
+ return $this->em->wrapInTransaction(function () use ($data, $importedBy): DoctorImportResult {
+ // نامِ نظام پزشکی پیشوند «دکتر» دارد؛ کنوانسیون پنل نام بدون پیشوند است
+ // (UI خودش «دکتر» را جلو میگذارد). حذف پیشوند + normalize فارسی.
+ $name = \App\Shared\Util\PersianText::stripDoctorTitle((string) $data['name']);
+ $code = trim((string) ($data['medical_system_code'] ?? $data['medicalSystemCode']));
+ $source = trim((string) ($data['source'] ?? 'irimc')) ?: 'irimc';
+
+ $doctorRepo = $this->em->getRepository(Doctor::class);
+ $userRepo = $this->em->getRepository(User::class);
+
+ // idempotency: همان پزشکِ منبع → بهروزرسانی، نه ساخت تکراری
+ $doctor = $doctorRepo->findOneBy(['source' => $source, 'medicalSystemCode' => $code]);
+ $created = false;
+
+ // پروفایل تصاحبشده را با ایمپورت مجدد بازنویسی نکن (مالک واقعی اولویت دارد)
+ if ($doctor !== null && $doctor->getOwnerStatus() === 'claimed') {
+ return new DoctorImportResult($doctor, false, 'claimed');
+ }
+
+ if ($doctor === null) {
+ // جلوگیری از تکرار بین منابع: اگر همین کد نظام پزشکی با هر source دیگری
+ // (مثلاً ثبت دستی) وجود دارد، ایمپورت نه میسازد و نه بازنویسی میکند.
+ $existing = $doctorRepo->findOneBy(['medicalSystemCode' => $code]);
+ if ($existing !== null) {
+ return new DoctorImportResult($existing, false, 'duplicate');
+ }
+ }
+
+ if ($doctor === null) {
+ // کاربر جانشینِ یکتا و غیرفعال؛ شناسهٔ مصنوعی قطعی از روی کد نظام پزشکی
+ $synthetic = 'imp_' . substr(md5($source . ':' . $code), 0, 14); // ≤ ۱۸ کاراکتر، ASCII، یکتا
+ $user = $userRepo->findOneBy(['mobileNumber' => $synthetic]);
+ if ($user === null) {
+ $user = new User($synthetic);
+ $user->setRealName($name);
+ $user->setStatus(0); // جانشین: هرگز لاگین نمیکند
+ $user->addRole(self::ROLE_UNCLAIMED_DOCTOR);
+ $this->em->persist($user);
+ }
+ $doctor = new Doctor($user, $name);
+ $doctor->setSource($source);
+ $doctor->setOwnerStatus('unclaimed');
+ $doctor->setActiveDoctorAppointment(true); // پزشک ایمپورتشده فعال باشد
+ $created = true;
+ }
+
+ // backfill: جانشینهای ایمپورتشده پیش از افزودن نقش marker، در ایمپورت مجدد نقش میگیرند
+ $surrogate = $doctor->getUser();
+ if (!$created
+ && str_starts_with($surrogate->getMobileNumber(), 'imp_')
+ && !$surrogate->hasRole(self::ROLE_UNCLAIMED_DOCTOR)) {
+ $surrogate->addRole(self::ROLE_UNCLAIMED_DOCTOR);
+ }
+
+ // فیلدهای مشترک
+ $doctor->setName($name);
+ $doctor->setMedicalSystemCode($code);
+ $doctor->setManagedBy($importedBy->getId());
+ if (array_key_exists('source_ref', $data) || array_key_exists('profile_url', $data)) {
+ $doctor->setSourceRef($data['source_ref'] ?? $data['profile_url'] ?? null);
+ }
+ if (!empty($data['gender'])) $doctor->setGender($data['gender']);
+ if (!empty($data['degree'])) $doctor->setDegree($data['degree']);
+ if (array_key_exists('info', $data)) $doctor->setInfo($data['info']);
+
+ // روابط بر پایهٔ شناسههای مرجع (تخصص/استان/شهر)
+ $this->syncRefCollection($doctor->getSpecialties(), $data['specialties'] ?? null, Specialty::class);
+ $this->syncRefCollection($doctor->getProvinces(), $data['states'] ?? null, Province::class);
+ $this->syncRefCollection($doctor->getCities(), $data['cities'] ?? null, City::class);
+
+ $this->ensureDefaultAddress($doctor, $name, $data);
+
+ $this->em->persist($doctor);
+ $this->em->flush();
+
+ return new DoctorImportResult($doctor, $created);
+ });
+ }
+
+ /**
+ * هر پزشک ایمپورتشده باید دستکم یک آدرس «مطب دکتر …» با شهر و استان داشته باشد.
+ * اگر آدرسی ندارد میسازد؛ فیلدهای خالیِ آدرس موجود را backfill میکند و
+ * مقادیر واردشده توسط کاربر را بازنویسی نمیکند.
+ */
+ private function ensureDefaultAddress(Doctor $doctor, string $name, array $data): void
+ {
+ $city = !empty($data['cities'])
+ ? $this->em->getRepository(City::class)->find((int) $data['cities'][0])
+ : null;
+ $province = !empty($data['states'])
+ ? $this->em->getRepository(Province::class)->find((int) $data['states'][0])
+ : null;
+
+ $address = $doctor->getAddresses()->first() ?: null;
+ if ($address === null) {
+ $address = DoctorAddress::forDoctor($doctor);
+ $doctor->getAddresses()->add($address);
+ $this->em->persist($address);
+ }
+
+ if ($address->getName() === null || $address->getName() === '') {
+ $address->setName('مطب دکتر ' . $name);
+ }
+ if ($address->getCity() === null && $city !== null) {
+ $address->setCity($city);
+ }
+ if ($address->getProvince() === null && $province !== null) {
+ $address->setProvince($province);
+ }
+ }
+
+ /**
+ * یک مجموعهٔ ManyToMany پزشک را با آرایهای از شناسههای مرجع همگام میکند.
+ * اگر $ids null باشد دست نمیخورد؛ اگر آرایه باشد، پاک و از نو پر میشود.
+ */
+ private function syncRefCollection(\Doctrine\Common\Collections\Collection $col, ?array $ids, string $class): void
+ {
+ if ($ids === null) {
+ return;
+ }
+ $col->clear();
+ foreach ($ids as $id) {
+ $ref = $this->em->getRepository($class)->find((int) $id);
+ if ($ref !== null && !$col->contains($ref)) {
+ $col->add($ref);
+ }
+ }
+ }
+}
diff --git a/src/Shared/Service/ApiIrService.php b/src/Shared/Service/ApiIrService.php
index 4b6e8fc4..c504046d 100644
--- a/src/Shared/Service/ApiIrService.php
+++ b/src/Shared/Service/ApiIrService.php
@@ -70,6 +70,31 @@ class ApiIrService
];
}
+ /**
+ * استعلام هویت شخص از روی کد ملی و تاریخ تولد (PersonInfo).
+ *
+ * @param string $birthDateJalali تاریخ تولد شمسی به فرمت Y/m/d (مثلاً 1371/1/1)
+ * @return array{firstName: string, lastName: string, alive: bool}|null null یعنی رکوردی مطابقت نکرد.
+ */
+ public function personInfo(string $nationalCode, string $birthDateJalali): ?array
+ {
+ $data = $this->post('/api/sw1/PersonInfo', [
+ 'nationalCode' => $nationalCode,
+ 'birthDate' => $birthDateJalali,
+ ]);
+
+ $person = $data['data'] ?? null;
+ if (!is_array($person) || ($person['nationalCode'] ?? '') === '') {
+ return null;
+ }
+
+ return [
+ 'firstName' => (string) ($person['firstName'] ?? ''),
+ 'lastName' => (string) ($person['lastName'] ?? ''),
+ 'alive' => filter_var($person['alive'] ?? false, FILTER_VALIDATE_BOOLEAN),
+ ];
+ }
+
/**
* @param array $payload
* @return array
diff --git a/src/Shared/Util/PersianText.php b/src/Shared/Util/PersianText.php
new file mode 100644
index 00000000..8daf5ab6
--- /dev/null
+++ b/src/Shared/Util/PersianText.php
@@ -0,0 +1,52 @@
+ 'ی', // ي عربی
+ "\u{0649}" => 'ی', // ى الف مقصوره
+ "\u{0643}" => 'ک', // ك عربی
+ "\u{200C}" => ' ', // نیمفاصله → فاصله
+ "\u{200B}" => '', // zero-width space
+ "\u{FEFF}" => '', // BOM
+ "\u{0640}" => '', // کشیده ـ
+ ]);
+
+ // ارقام فارسی/عربی → لاتین
+ $text = strtr($text, array_combine(
+ ['۰','۱','۲','۳','۴','۵','۶','۷','۸','۹','٠','١','٢','٣','٤','٥','٦','٧','٨','٩'],
+ ['0','1','2','3','4','5','6','7','8','9','0','1','2','3','4','5','6','7','8','9'],
+ ));
+
+ return trim(preg_replace('/\s+/u', ' ', $text) ?? $text);
+ }
+
+ /** مقایسهٔ دو نام فارسی پس از نرمالسازی. */
+ public static function sameName(string $a, string $b): bool
+ {
+ return self::normalize($a) === self::normalize($b);
+ }
+
+ /** حذف عنوان «دکتر» از ابتدای نام (برای مقایسهٔ نام پروفایل با نام ثبت احوال). */
+ public static function stripDoctorTitle(string $name): string
+ {
+ $normalized = self::normalize($name);
+ // پیشوندهای متوالی «دکتر دکتر …» را هم کامل حذف میکند.
+ return trim(preg_replace('/^(?:دکتر\s+)+/u', '', $normalized) ?? $normalized);
+ }
+}
diff --git a/tests/Doctor/DoctorClaimTest.php b/tests/Doctor/DoctorClaimTest.php
new file mode 100644
index 00000000..25b998ee
--- /dev/null
+++ b/tests/Doctor/DoctorClaimTest.php
@@ -0,0 +1,260 @@
+client->disableReboot();
+ }
+
+ private function mockApiIr(bool $shahkar = true, ?array $person = ['firstName' => 'تست', 'lastName' => 'ایمپورت', 'alive' => true]): void
+ {
+ $mock = $this->createMock(ApiIrService::class);
+ $mock->method('isConfigured')->willReturn(true);
+ $mock->method('shahkarMatch')->willReturn($shahkar);
+ $mock->method('personInfo')->willReturn($person);
+ static::getContainer()->set(ApiIrService::class, $mock);
+ }
+
+ private function importUnclaimedDoctor(): string
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = 'C' . random_int(100_000, 999_999) . random_int(100, 999);
+ $data = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, [
+ 'name' => 'دکتر تست ایمپورت',
+ 'medical_system_code' => $code,
+ ]);
+
+ return $data['data']['uuid'];
+ }
+
+ private function claimBody(): array
+ {
+ // db_test هرگز reset نمیشود و users.national_code یکتاست → کد ملی هر تست تصادفی
+ return [
+ 'national_code' => '00' . str_pad((string) random_int(0, 99_999_999), 8, '0', STR_PAD_LEFT),
+ 'birth_date' => '1371/1/1',
+ 'first_name' => 'تست',
+ 'last_name' => 'ایمپورت',
+ ];
+ }
+
+ public function testSuccessfulClaimTransfersOwnershipAndDeletesSurrogate(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $surrogateId = $doctor->getUser()->getId();
+ $claimer = $this->createUser(['ROLE_USER']);
+
+ $res = $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $this->claimBody());
+
+ $this->assertSame(200, $this->responseCode());
+ $this->assertSame('claimed', $res['data']['status']);
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $this->assertSame('claimed', $doctor->getOwnerStatus());
+ $this->assertSame($claimer->getId(), $doctor->getUser()->getId());
+ $this->assertNull($doctor->getManagedBy());
+
+ $claimer = $this->em->getRepository(User::class)->find($claimer->getId());
+ $this->assertTrue($claimer->hasRole('ROLE_DOCTOR'));
+ $this->assertTrue($claimer->isNationalCodeVerified());
+
+ $this->assertNull($this->em->getRepository(User::class)->find($surrogateId), 'surrogate must be deleted');
+
+ $claim = $this->em->getRepository(DoctorClaimRequest::class)->findOneBy(['doctor' => $doctor]);
+ $this->assertSame(DoctorClaimRequest::STATUS_COMPLETED, $claim->getStatus());
+ }
+
+ public function testNameMismatchRevertsToUnclaimed(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr(person: ['firstName' => 'کس', 'lastName' => 'دیگری', 'alive' => true]);
+
+ $claimer = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $this->claimBody());
+
+ $this->assertSame(422, $this->responseCode());
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $this->assertSame('unclaimed', $doctor->getOwnerStatus(), 'must be free for the real doctor to retry');
+ $this->assertStringStartsWith('imp_', $doctor->getUser()->getMobileNumber(), 'surrogate must survive');
+
+ $claim = $this->em->getRepository(DoctorClaimRequest::class)->findOneBy(['doctor' => $doctor]);
+ $this->assertSame(DoctorClaimRequest::STATUS_FAILED, $claim->getStatus());
+ $this->assertNotNull($claim->getFailureReason());
+ }
+
+ public function testDeceasedPersonIsRejected(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr(person: ['firstName' => 'تست', 'lastName' => 'ایمپورت', 'alive' => false]);
+
+ $claimer = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $this->claimBody());
+
+ $this->assertSame(422, $this->responseCode());
+ }
+
+ public function testShahkarMismatchIsRejected(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr(shahkar: false);
+
+ $claimer = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $this->claimBody());
+
+ $this->assertSame(422, $this->responseCode());
+ }
+
+ public function testAlreadyClaimedIsConflict(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+
+ $first = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $first, $this->claimBody());
+ $this->assertSame(200, $this->responseCode());
+
+ $second = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $second, $this->claimBody());
+ $this->assertSame(409, $this->responseCode());
+ }
+
+ public function testUserWhoAlreadyOwnsADoctorCannotClaim(): void
+ {
+ $uuidA = $this->importUnclaimedDoctor();
+ $uuidB = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+
+ $claimer = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuidA}/claim", $claimer, $this->claimBody());
+ $this->assertSame(200, $this->responseCode());
+
+ $this->authJson('POST', "/api/v1/doctor/{$uuidB}/claim", $claimer, $this->claimBody());
+ $this->assertSame(409, $this->responseCode());
+
+ $this->em->clear();
+ $doctorB = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuidB]);
+ $this->assertSame('unclaimed', $doctorB->getOwnerStatus());
+ }
+
+ public function testValidationErrors(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+ $claimer = $this->createUser(['ROLE_USER']);
+
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, ['national_code' => '123', 'birth_date' => '1371/1/1', 'first_name' => 'الف', 'last_name' => 'ب']);
+ $this->assertSame(422, $this->responseCode());
+
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, ['national_code' => '0010007700', 'birth_date' => 'invalid', 'first_name' => 'الف', 'last_name' => 'ب']);
+ $this->assertSame(422, $this->responseCode());
+ }
+
+ public function testMobileMismatchIsRejected(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+ $claimer = $this->createUser(['ROLE_USER']);
+
+ $body = $this->claimBody();
+ $body['mobile'] = '09990000000'; // متفاوت با موبایل کاربر
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $body);
+ $this->assertSame(422, $this->responseCode());
+ }
+
+ public function testOwnerCanDeleteOwnProfileButOthersCannot(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->mockApiIr();
+ $claimer = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/doctor/{$uuid}/claim", $claimer, $this->claimBody());
+ $this->assertSame(200, $this->responseCode());
+
+ // کاربر دیگر → 403
+ $other = $this->createUser(['ROLE_USER']);
+ $this->authJson('DELETE', "/api/v1/doctor/{$uuid}", $other);
+ $this->assertSame(403, $this->responseCode());
+
+ // مالک → 200
+ $this->authJson('DELETE', "/api/v1/doctor/{$uuid}", $claimer);
+ $this->assertSame(200, $this->responseCode());
+
+ $this->em->clear();
+ $this->assertNull($this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]));
+ }
+
+ public function testUnclaimedProfileNotDeletableByRandomUser(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $user = $this->createUser(['ROLE_USER']);
+ $this->authJson('DELETE', "/api/v1/doctor/{$uuid}", $user);
+ $this->assertSame(403, $this->responseCode());
+ }
+
+ public function testClaimInfoIsPublic(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+
+ $this->client->request('GET', "/api/v1/doctor/{$uuid}/claim-info");
+ $this->assertSame(200, $this->responseCode());
+ $data = json_decode($this->client->getResponse()->getContent(), true);
+ $this->assertTrue($data['data']['claimable']);
+ $this->assertSame('unclaimed', $data['data']['owner_status']);
+ }
+
+ public function testAdminTransferHappyPath(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $mobile = '09' . str_pad((string) random_int(0, 999_999_999), 9, '0', STR_PAD_LEFT);
+
+ $res = $this->authJson('POST', "/api/v1/admin/doctors/{$uuid}/transfer", $admin, ['mobile' => $mobile]);
+
+ $this->assertSame(200, $this->responseCode());
+ $this->assertSame('claimed', $res['data']['owner_status']);
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $this->assertSame('claimed', $doctor->getOwnerStatus());
+ $this->assertSame($mobile, $doctor->getUser()->getMobileNumber());
+ $this->assertTrue($doctor->getUser()->hasRole('ROLE_DOCTOR'));
+
+ // transfer دوباره → 409
+ $this->authJson('POST', "/api/v1/admin/doctors/{$uuid}/transfer", $admin, ['mobile' => $mobile]);
+ $this->assertSame(409, $this->responseCode());
+ }
+
+ public function testAdminTransferRequiresAdmin(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $user = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', "/api/v1/admin/doctors/{$uuid}/transfer", $user, ['mobile' => '09121234567']);
+ $this->assertSame(403, $this->responseCode());
+ }
+
+ public function testClaimRequiresAuthentication(): void
+ {
+ $uuid = $this->importUnclaimedDoctor();
+ $this->client->request('POST', "/api/v1/doctor/{$uuid}/claim", server: ['CONTENT_TYPE' => 'application/json'], content: json_encode($this->claimBody()));
+ $this->assertSame(401, $this->responseCode());
+ }
+}
diff --git a/tests/Doctor/DoctorImportTest.php b/tests/Doctor/DoctorImportTest.php
new file mode 100644
index 00000000..3c2f4198
--- /dev/null
+++ b/tests/Doctor/DoctorImportTest.php
@@ -0,0 +1,224 @@
+ 'دکتر صفورا حجازی نیا',
+ 'medical_system_code' => $code,
+ 'source_ref' => 'https://membersearch.irimc.org/member/profile?id=test',
+ 'gender' => 'man',
+ 'degree' => 'general',
+ 'info' => 'دکترای حرفهای پزشکی',
+ ];
+ }
+
+ /** db_test is never reset — randomise the natural key per run. */
+ private function freshCode(): string
+ {
+ return 'T' . random_int(100_000, 999_999) . random_int(100, 999);
+ }
+
+ public function testImportCreatesUnclaimedDoctorWithSurrogateUser(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $data = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $this->importPayload($code));
+
+ $this->assertSame(201, $this->responseCode());
+ $this->assertTrue($data['success']);
+ $this->assertTrue($data['data']['created']);
+ $this->assertNotEmpty($data['data']['uuid']);
+
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $data['data']['uuid']]);
+ $this->assertSame('unclaimed', $doctor->getOwnerStatus());
+ $this->assertSame('irimc', $doctor->getSource());
+ $this->assertTrue($doctor->isActiveDoctorAppointment());
+ // نام بدون پیشوند «دکتر» ذخیره میشود (UI خودش «دکتر» را جلو میگذارد)
+ $this->assertSame('صفورا حجازی نیا', $doctor->getName());
+
+ $surrogate = $doctor->getUser();
+ $this->assertStringStartsWith('imp_', $surrogate->getMobileNumber());
+ $this->assertSame(0, $surrogate->getStatus());
+ $this->assertTrue($surrogate->hasRole('ROLE_UNCLAIMED_DOCTOR'));
+ }
+
+ public function testReimportUpdatesInsteadOfDuplicating(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $first = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $this->importPayload($code));
+ $this->assertSame(201, $this->responseCode());
+
+ $payload = $this->importPayload($code);
+ $payload['name'] = 'دکتر تست ویرایششده';
+ $second = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $payload);
+
+ $this->assertSame(200, $this->responseCode());
+ $this->assertFalse($second['data']['created']);
+ $this->assertSame($first['data']['uuid'], $second['data']['uuid']);
+
+ $count = $this->em->getRepository(Doctor::class)->count(['source' => 'irimc', 'medicalSystemCode' => $code]);
+ $this->assertSame(1, $count);
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $first['data']['uuid']]);
+ // نیمفاصله در normalize به فاصله تبدیل میشود
+ $this->assertSame('تست ویرایش شده', $doctor->getName());
+ }
+
+ public function testClaimedDoctorIsNeverOverwritten(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $created = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $this->importPayload($code));
+ $uuid = $created['data']['uuid'];
+
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $owner = $this->createUser(['ROLE_USER', 'ROLE_DOCTOR']);
+ $doctor->transferOwnershipTo($owner);
+ $this->em->flush();
+ $originalName = $doctor->getName();
+
+ $payload = $this->importPayload($code);
+ $payload['name'] = 'دکتر بازنویسی ممنوع';
+ $reimport = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $payload);
+
+ $this->assertSame(200, $this->responseCode());
+ $this->assertSame('claimed', $reimport['data']['skipped']);
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $uuid]);
+ $this->assertSame($originalName, $doctor->getName());
+ $this->assertSame('claimed', $doctor->getOwnerStatus());
+ }
+
+ public function testImportCreatesDefaultOfficeAddressWithCityAndProvince(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $province = new Province('استان تست ' . $code);
+ $city = new City('شهر تست ' . $code, $province);
+ $this->em->persist($province);
+ $this->em->persist($city);
+ $this->em->flush();
+
+ $payload = $this->importPayload($code);
+ $payload['states'] = [$province->getId()];
+ $payload['cities'] = [$city->getId()];
+
+ $data = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $payload);
+ $this->assertSame(201, $this->responseCode());
+
+ $cityId = $city->getId();
+ $provinceId = $province->getId();
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $data['data']['uuid']]);
+ $this->assertCount(1, $doctor->getAddresses());
+ $address = $doctor->getAddresses()->first();
+ $this->assertSame('مطب دکتر صفورا حجازی نیا', $address->getName());
+ $this->assertSame($cityId, $address->getCity()?->getId());
+ $this->assertSame($provinceId, $address->getProvince()?->getId());
+
+ // ایمپورت مجدد نباید آدرس تکراری بسازد یا نام آدرس را بازنویسی کند
+ $address->setName('مطب ویرایششده توسط کاربر');
+ $this->em->flush();
+
+ $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $payload);
+ $this->assertSame(200, $this->responseCode());
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $data['data']['uuid']]);
+ $this->assertCount(1, $doctor->getAddresses());
+ $this->assertSame('مطب ویرایششده توسط کاربر', $doctor->getAddresses()->first()->getName());
+ }
+
+ public function testImportWithoutLocationStillCreatesOfficeAddress(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $data = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $this->importPayload($code));
+ $this->assertSame(201, $this->responseCode());
+
+ $this->em->clear();
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['uuid' => $data['data']['uuid']]);
+ $this->assertCount(1, $doctor->getAddresses());
+ $this->assertSame('مطب دکتر صفورا حجازی نیا', $doctor->getAddresses()->first()->getName());
+ }
+
+ public function testManualDoctorWithSameCodeIsNeverDuplicated(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+ $code = $this->freshCode();
+
+ $owner = $this->createUser(['ROLE_USER', 'ROLE_DOCTOR']);
+ $manual = new Doctor($owner, 'پزشک دستی');
+ $manual->setMedicalSystemCode($code);
+ $this->em->persist($manual);
+ $this->em->flush();
+
+ $data = $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, $this->importPayload($code));
+
+ $this->assertSame(200, $this->responseCode());
+ $this->assertFalse($data['data']['created']);
+ $this->assertSame('duplicate', $data['data']['skipped']);
+ $this->assertSame($manual->getUuid(), $data['data']['uuid']);
+
+ $this->em->clear();
+ $count = $this->em->getRepository(Doctor::class)->count(['medicalSystemCode' => $code]);
+ $this->assertSame(1, $count);
+ $doctor = $this->em->getRepository(Doctor::class)->findOneBy(['medicalSystemCode' => $code]);
+ $this->assertSame('پزشک دستی', $doctor->getName());
+ $this->assertSame('manual', $doctor->getSource());
+ }
+
+ public function testValidationErrors(): void
+ {
+ $admin = $this->createUser(['ROLE_USER', 'ROLE_ADMIN']);
+
+ $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, ['medical_system_code' => $this->freshCode()]);
+ $this->assertSame(422, $this->responseCode());
+
+ $this->authJson('POST', '/api/v1/admin/doctors/import', $admin, ['name' => 'دکتر بیکد']);
+ $this->assertSame(422, $this->responseCode());
+ }
+
+ public function testNonAdminIsRejected(): void
+ {
+ $user = $this->createUser(['ROLE_USER']);
+ $this->authJson('POST', '/api/v1/admin/doctors/import', $user, $this->importPayload($this->freshCode()));
+ $this->assertSame(403, $this->responseCode());
+ }
+
+ public function testImporterRoleCanImportButNothingElse(): void
+ {
+ $importer = $this->createUser(['ROLE_USER', 'ROLE_IMPORTER']);
+
+ $this->authJson('POST', '/api/v1/admin/doctors/import', $importer, $this->importPayload($this->freshCode()));
+ $this->assertSame(201, $this->responseCode(), 'ROLE_IMPORTER must be able to import');
+
+ $this->authJson('GET', '/api/v1/admin/users', $importer);
+ $this->assertSame(403, $this->responseCode(), 'ROLE_IMPORTER must NOT reach other admin endpoints');
+
+ $this->authJson('GET', '/api/v1/admin/doctor-claims', $importer);
+ $this->assertSame(403, $this->responseCode());
+ }
+}
diff --git a/tests/Shared/PersianTextTest.php b/tests/Shared/PersianTextTest.php
new file mode 100644
index 00000000..24be375c
--- /dev/null
+++ b/tests/Shared/PersianTextTest.php
@@ -0,0 +1,41 @@
+assertTrue(PersianText::sameName("علي اكبري", 'علی اکبری'));
+ }
+
+ public function testHalfSpaceAndExtraWhitespace(): void
+ {
+ $this->assertTrue(PersianText::sameName("محمد\u{200C}رضا کریمی ", 'محمد رضا کریمی'));
+ }
+
+ public function testPersianAndArabicDigits(): void
+ {
+ $this->assertSame('1371/1/1', PersianText::normalize('۱۳۷۱/۱/۱'));
+ $this->assertSame('0912', PersianText::normalize('٠٩١٢'));
+ }
+
+ public function testStripDoctorTitle(): void
+ {
+ $this->assertSame('فرخنده حسینی', PersianText::stripDoctorTitle('دکتر فرخنده حسینی'));
+ $this->assertSame('فرخنده حسینی', PersianText::stripDoctorTitle(' دکتر فرخنده حسینی '));
+ $this->assertSame('فرخنده حسینی', PersianText::stripDoctorTitle('فرخنده حسینی'));
+ $this->assertSame('صفورا حجازی نیا', PersianText::stripDoctorTitle('دکتر صفورا حجازی نیا'));
+ // پیشوند متوالی و کافِ عربی
+ $this->assertSame('صفورا حجازی نیا', PersianText::stripDoctorTitle('دکتر دکتر صفورا حجازی نیا'));
+ $this->assertSame('علی اکبری', PersianText::stripDoctorTitle('دكتر علي اكبري'));
+ }
+
+ public function testDifferentNamesStayDifferent(): void
+ {
+ $this->assertFalse(PersianText::sameName('علی اکبری', 'ولی اکبری'));
+ }
+}