![]() 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 Dankort extends Card implements CreditCard { /** * Regular expression for card number recognition. * * @var string */ public static $pattern = '/^5019/'; /** * Credit card type. * * @var string */ protected $type = 'debit'; /** * Credit card name. * * @var string */ protected $name = 'dankort'; /** * Brand name. * * @var string */ protected $brand = 'Dankort'; /** * 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; }