Доработка [issue #1]

This commit is contained in:
RedHood
2020-09-17 00:32:33 +10:00
parent dc5b301adf
commit 1d4f5d270a
5 changed files with 47 additions and 100 deletions

View File

@@ -2,14 +2,14 @@
namespace app\controllers;
use \Yii;
use \app\models\Dump;
use Yii;
use app\Dumper;
class DumpController extends \yii\console\Controller
{
public function actionIndex($link, $depth = 0, $buffer = 0, $force = false, $searchExternal = false, $path = '')
{
(new Dump)->download($link, $depth, $buffer, $force, $searchExternal, $path);
(new Dumper)->download($link, $depth, $buffer, $force, $searchExternal, $path);
return 0;
}