• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/external/petrovich.php
  • Класс: Petrovich
  • Вызов: Petrovich::firstname
public function firstname($firstname, $case = Petrovich::CASE_NOMENATIVE) {
//		if(empty($firstname))
//			throw new Exception('Firstname cannot be empty.');

	if ($case === Petrovich::CASE_NOMENATIVE) {
		return $firstname;
	}

	return $this->inflect($firstname,$case,__FUNCTION__);
}