This commit is contained in:
2021-09-04 01:55:34 +03:00
committed by GitHub
parent e9dce19e25
commit ca2c2ee633
9 changed files with 344 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Nsq\Config;
final class LookupConfig
{
public function __construct(
public int $pollingInterval = 10000,
) {
}
}