20 lines
286 B
PHP
20 lines
286 B
PHP
<?php
|
|
|
|
use App\Domains\Card\Services\CardService;
|
|
|
|
require_once realpath(dirname(__FILE__) . '/TestCase.php');
|
|
|
|
$simArray = [
|
|
1440048320107,
|
|
1440048320150,
|
|
1440048320151,
|
|
1440048320272,
|
|
1440048320274,
|
|
1440048320277,
|
|
|
|
];
|
|
|
|
$res = CardService::getMongoCardsInfo($simArray);
|
|
|
|
dd($res);
|