ParserController.php
390 Bytes
<?php
/**
* Created by PhpStorm.
* User: Cibermag
* Date: 30.09.2015
* Time: 14:38
*/
use yii\console\Controller;
class ParserController extends Controller{
public function actionParseCSV ()
{
}
public function actionParseXML ()
{
}
protected function parseFileConsole( $file_path ){
$data = Yii::$app->multiparser->parse( $file_path );
}
}