![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/vendor/laravel-validation-rules/credit-card/src/Cards/ |
<?php namespace LVR\CreditCard\Cards; use LVR\CreditCard\Contracts\CreditCard; /** * Class Mir. * * @link https://nspk.com/ * * @author [email protected] */ class Mir extends Card implements CreditCard { /** * Regular expression for card number recognition. * * @var string */ public static $pattern = '/^220/'; /** * Credit card type. * * @var string */ protected $type = 'credit'; /** * Credit card name. * * @var string */ protected $name = 'mir'; /** * Brand name. * * @var string */ protected $brand = 'Mir'; /** * Card number length's. * * @var array */ protected $number_length = [16]; /** * CVC code length's. * * @var array */ protected $cvc_length = [3]; /** * Test cvc code checksum against Luhn algorithm. * * @var bool */ protected $checksum_test = true; }