| 
<?php
 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
 
 /**
 * Magic numbers of credit cards, provided by DataCash account.
 */
 
 return array(
 array(
 "number" => "4444333322221111",
 "month" => "01",
 "year" => "2017",
 "verification_value" => "123"
 ),
 array(
 "number" => "5120790000000158",
 "month" => "01",
 "year" => "2017",
 "verification_value" => "123"
 ),
 );
 
 |