19 lines
319 B
PHP
19 lines
319 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services;
|
|
|
|
class PolitenessService
|
|
{
|
|
public function minDelayFor(string $domain): int
|
|
{
|
|
$configValue = config('crawler.min_domain_delay_seconds');
|
|
|
|
if ($configValue !== null) {
|
|
return $configValue;
|
|
}
|
|
|
|
return 10;
|
|
}
|
|
}
|