for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Shoman4eg\Nalog\Enum;
/**
* @author Artem Dubinin <[email protected]>
*/
final class CancelCommentType
{
public const CANCEL = 'Чек сформирован ошибочно';
public const REFUND = 'Возврат средств';
public static function all(): array
return [
self::CANCEL,
self::REFUND,
];
}