========================================== Debug Incomplete Metadata ========================================== BookId: 1992056105677979650 URL: dracin-git.test/en/drama/1992056105677979650 ====================================================================== Testing NetShortService.getDrama() ======================================================================
Class "App\Services\NetShortService" not found
dev-utils/debug_incomplete_metadata.php
23// Test with NetShortService
24echo str_repeat('=', 70) . "\n";
25echo "Testing NetShortService.getDrama()\n";
26echo str_repeat('=', 70) . "\n\n";
27
28$netShortService = new \App\Services\NetShortService('en');
29
30try {
31 $startTime = microtime(true);
32 $drama = $netShortService->getDrama($bookId);
33 $duration = round((microtime(true) - $startTime) * 1000);
34
35 echo "✅ Request completed - {$duration}ms\n\n";
36
37 echo "DRAMA INFO:\n";
38 echo str_repeat('-', 70) . "\n";
39 $dramaInfo = $drama['dramaInfo'] ?? [];
40