mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
17 lines
191 B
PHP
17 lines
191 B
PHP
<?php
|
|
|
|
|
|
namespace App\Module;
|
|
|
|
|
|
use Maatwebsite\Excel\Concerns\ToArray;
|
|
|
|
class BillImport implements ToArray
|
|
{
|
|
public function Array(Array $tables)
|
|
{
|
|
return $tables;
|
|
}
|
|
|
|
}
|