Raw NetShort API response for drama: 42000002724 ============================================================
Target class [App\Services\NetShortService] does not exist.
Illuminate\Container\Container->build(string)
Illuminate\Container\Container->resolve(string, array, boolean)
Illuminate\Foundation\Application->resolve(string, array)
Illuminate\Container\Container->make(string, array)
Illuminate\Foundation\Application->make(string, array)
vendor/laravel/framework/src/Illuminate/Foundation/helpers.php
dev-utils/debug_drama_42000002724_raw.php
6$app->make(\Illuminate\Contracts\Console\Kernel::class)->bootstrap();
7
8echo "Raw NetShort API response for drama: 42000002724\n";
9echo str_repeat('=', 60) . "\n\n";
10
11$netshort = app(\App\Services\NetShortService::class);
12$start = microtime(true);
13
14try {
15 $result = $netshort->getDrama('42000002724');
16 $duration = round((microtime(true) - $start) * 1000);
17
18 echo "Duration: {$duration}ms\n";
19 echo "Result type: " . gettype($result) . "\n";
20 echo "Is empty: " . (empty($result) ? 'Yes' : 'No') . "\n\n";
21
22 if (is_array($result)) {
23