signer/backend/src/Infrastructure/External/Api/ApiSleep.php

14 lines
193 B
PHP

<?php
namespace App\Infrastructure\External\Api;
trait ApiSleep
{
protected function sleep(int $time = 5): void
{
if ($time > 0) {
sleep($time);
}
}
}