Testing drama: 42000002724 (lang: zh) ============================================================
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/test_drama_42000002724.php
8echo "Testing drama: 42000002724 (lang: zh)\n";
9echo str_repeat('=', 60) . "\n\n";
10
11// Test each service individually to find which one has the drama
12$services = [
13 'netshort' => app(\App\Services\NetShortService::class),
14 'dramabox' => app(\App\Services\DramaBoxService::class),
15 'dramawave' => app(\App\Services\DramaWaveService::class),
16 'shortmax' => app(\App\Services\ShortMaxService::class),
17];
18
19foreach ($services as $serviceName => $service) {
20 echo "Testing $serviceName service:\n";
21 $start = microtime(true);
22
23 try {
24 $result = $service->getDrama('42000002724');
25