• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/transport/countlimiter.php
  • Класс: Bitrix\Sender\Transport\CountLimiter
  • Вызов: CountLimiter::withCurrent
public function withCurrent($callable)
{
	if (!is_callable($callable))
	{
		throw new ArgumentException('Wrong type of parameter `callable`.');
	}

	$this->current = $callable;
	return $this;
}