doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/php/SymfonyApiScanner.java [274:292]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String methodName = findNextFunctionName(content, matcher.end());

            String description = buildDescription(componentId, methodName, routeName);
            List<String> pathParams = extractPathParameters(path);
            String requestSchema = pathParams.isEmpty() ? null : SCHEMA_PATH_PREFIX + String.join(", ", pathParams);

            // Create endpoint for each HTTP method
            for (String method : methods) {
                ApiEndpoint endpoint = new ApiEndpoint(
                    componentId,
                    ApiType.REST,
                    fullPath,
                    method,
                    description,
                    requestSchema,
                    null,
                    null
                );
                apiEndpoints.add(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



doc-architect/doc-architect-core/src/main/java/com/docarchitect/core/scanner/impl/php/SymfonyApiScanner.java [317:335]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String methodName = findNextFunctionName(content, matcher.end());

            String description = buildDescription(componentId, methodName, routeName);
            List<String> pathParams = extractPathParameters(path);
            String requestSchema = pathParams.isEmpty() ? null : SCHEMA_PATH_PREFIX + String.join(", ", pathParams);

            // Create endpoint for each HTTP method
            for (String method : methods) {
                ApiEndpoint endpoint = new ApiEndpoint(
                    componentId,
                    ApiType.REST,
                    fullPath,
                    method,
                    description,
                    requestSchema,
                    null,
                    null
                );
                apiEndpoints.add(endpoint);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



