mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
18 lines
418 B
PHP
18 lines
418 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class omecsv_autotask_task_init{
|
||
public function __construct()
|
||
{
|
||
$this->oFunc = kernel::single('omecsv_func');
|
||
$this->oQueue = app::get('omecsv')->model('queue');
|
||
}
|
||
|
||
public function __deconstruct()
|
||
{
|
||
unset($this->oFunc,$this->oQueue);
|
||
}
|
||
} |