inn ?? ''; } /** * Устанавливает ИНН. Тег ФФД: 1228, 1018. * Входная строка лишается всех знаков, кроме цифр. * * @param string $inn * @return $this * @throws AtolInnWrongLengthException */ public function setInn(string $inn) { $inn = preg_replace("/[^0-9]/", '', $inn); if (preg_match_all("/(^[0-9]{10}$)|(^[0-9]{12}$)/", $inn) == 0) { throw new AtolInnWrongLengthException($inn); } $this->inn = $inn; return $this; } }