Exemple #1
0
 private function importAge($age)
 {
     $lines = explode("\r", file_get_contents("cards/age{$age}.csv"));
     foreach ($lines as $line) {
         $this->addCards(Card::import($age, str_getcsv($line)));
     }
 }
function card($csv, $age = 1)
{
    return Card::import($age, str_getcsv($csv))[0];
}