solkel88
Results
1
issues of
solkel88
use WpQueuedJobs\Jobs\Job; class BackgroundJob extends Job { public function handle() { $data = $this->data; file_put_contents('logs.txt', json_encode($data).PHP_EOL, FILE_APPEND); $res = (new WC_Product_CSV_Importer($data['file'], $data['data']))->import(); file_put_contents('logs_result.txt', json_encode($res).PHP_EOL, FILE_APPEND); } } ================other class======================= the...