Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | protected function runCommand($command, $basePath, $asset, $result) |
||
31 | { |
||
32 | if ($command === 'render') { |
||
33 | $res = Yii::$app->getView()->renderFile("$basePath/$asset"); |
||
34 | file_put_contents("$basePath/$result", $res); |
||
35 | } else { |
||
36 | return parent::runCommand($command, $basePath, $asset, $result); |
||
37 | } |
||
38 | } |
||
39 | } |
||
40 |