Logo white

Administrator / test_1

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • test_1
  • console
  • controllers
  • ParserController.php
  • add PriceWriter and organize error view for users
    2edfb901
    Mihail authored
    2015-09-30 15:07:51 +0300  
    Browse Code ยป
ParserController.php 390 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?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 );

    }
}