![]() 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 Jcb extends Card implements CreditCard { /** * Regular expression for card number recognition. * * @var string */ public static $pattern = '/^(?:2131|1800|35\d{3})/'; /** * Credit card type. * * @var string */ protected $type = 'credit'; /** * Credit card name. * * @var string */ protected $name = 'jcb'; /** * Brand name. * * @var string */ protected $brand = 'JCB'; /** * Card number length's. * * @var array */ protected $number_length = [16, 17, 18, 19]; /** * CVC code length's. * * @var array */ protected $cvc_length = [3]; /** * Test cvc code checksum against Luhn algorithm. * * @var bool */ protected $checksum_test = true; }