Skip to content

Commit c124b7b

Browse files
chore(internal): codegen related update
1 parent 5bc4f8f commit c124b7b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/CasGenerator/CasGeneratorGenerateCasParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* This endpoint generates CAS (Consolidated Account Statement) documents by submitting a mailback request to the specified CAS authority.
1515
* Currently only supports KFintech, with plans to support CAMS, CDSL, and NSDL in the future.
1616
*
17-
* @see CasParser\CasGenerator->generateCas
17+
* @see CasParser\Services\CasGeneratorService::generateCas()
1818
*
1919
* @phpstan-type CasGeneratorGenerateCasParamsShape = array{
2020
* email: string,

src/CasParser/CasParserCamsKfintechParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* This endpoint specifically parses CAMS/KFintech CAS (Consolidated Account Statement) PDF files and returns data in a unified format.
1414
* Use this endpoint when you know the PDF is from CAMS or KFintech.
1515
*
16-
* @see CasParser\CasParser->camsKfintech
16+
* @see CasParser\Services\CasParserService::camsKfintech()
1717
*
1818
* @phpstan-type CasParserCamsKfintechParamsShape = array{
1919
* password?: string, pdf_file?: string, pdf_url?: string

src/CasParser/CasParserCdslParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* This endpoint specifically parses CDSL CAS (Consolidated Account Statement) PDF files and returns data in a unified format.
1414
* Use this endpoint when you know the PDF is from CDSL.
1515
*
16-
* @see CasParser\CasParser->cdsl
16+
* @see CasParser\Services\CasParserService::cdsl()
1717
*
1818
* @phpstan-type CasParserCdslParamsShape = array{
1919
* password?: string, pdf_file?: string, pdf_url?: string

src/CasParser/CasParserNsdlParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* This endpoint specifically parses NSDL CAS (Consolidated Account Statement) PDF files and returns data in a unified format.
1414
* Use this endpoint when you know the PDF is from NSDL.
1515
*
16-
* @see CasParser\CasParser->nsdl
16+
* @see CasParser\Services\CasParserService::nsdl()
1717
*
1818
* @phpstan-type CasParserNsdlParamsShape = array{
1919
* password?: string, pdf_file?: string, pdf_url?: string

src/CasParser/CasParserSmartParseParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* This endpoint parses CAS (Consolidated Account Statement) PDF files from NSDL, CDSL, or CAMS/KFintech and returns data in a unified format.
1414
* It auto-detects the CAS type and transforms the data into a consistent structure regardless of the source.
1515
*
16-
* @see CasParser\CasParser->smartParse
16+
* @see CasParser\Services\CasParserService::smartParse()
1717
*
1818
* @phpstan-type CasParserSmartParseParamsShape = array{
1919
* password?: string, pdf_file?: string, pdf_url?: string

0 commit comments

Comments
 (0)