Поддержка correction_info

This commit is contained in:
2021-12-03 20:09:14 +08:00
parent 05fd25e810
commit d533164d1b
9 changed files with 332 additions and 142 deletions

View File

@@ -0,0 +1,23 @@
<?php
/*
* Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
*
* This code is licensed under MIT.
* Этот код распространяется по лицензии MIT.
* https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
*/
declare(strict_types = 1);
namespace AtolOnline\Exceptions;
use AtolOnline\Constants\Ffd105Tags;
/**
* Исключение, возникающее при пустом номере документа коррекции
*/
class EmptyCorrectionNumberException extends AtolException
{
protected $message = 'Номер документа коррекции не может быть пустым';
protected array $ffd_tags = [Ffd105Tags::CORRECTION_DATE];
}