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 PaymentType
{
public const CASH = 'CASH';
public const ACCOUNT = 'ACCOUNT';
public static function all(): array
return [
self::CASH,
self::ACCOUNT,
];
}