yii2-console-runner-extension icon indicating copy to clipboard operation
yii2-console-runner-extension copied to clipboard

Ability to execute code synchronously

Open onmotion opened this issue 5 years ago • 0 comments

A case:

I make an ajax request and wait the real exit code for show the result to the user. In background mode I don't have access to the real exit code.

public function actionRunManualSync() {
        $exitCode = null;
        \Yii::$app->consoleRunner->run('beru/sync', $exitCode);
        return $exitCode;
    }

onmotion avatar Jul 02 '19 09:07 onmotion