Testing DramaBox drama: 42000002724 ============================================================
Target class [App\Services\DramaBoxService] 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/test_dramabox_42000002724.php
6$app->make(\Illuminate\Contracts\Console\Kernel::class)->bootstrap();
7
8echo "Testing DramaBox drama: 42000002724\n";
9echo str_repeat('=', 60) . "\n\n";
10
11$dramabox = app(\App\Services\DramaBoxService::class);
12$start = microtime(true);
13
14try {
15 echo "Calling DramaBox->getDrama('42000002724')...\n";
16 $result = $dramabox->getDrama('42000002724');
17 $duration = round((microtime(true) - $start) * 1000);
18
19 echo "Duration: {$duration}ms\n";
20 echo "Success: " . (!empty($result) ? 'Yes' : 'No') . "\n\n";
21
22 if (!empty($result)) {
23