yii\console\controllers\FixtureController::notifyLoaded PHP Method

notifyLoaded() private method

Notifies user that fixtures were successfully loaded.
private notifyLoaded ( array $fixtures )
$fixtures array
    private function notifyLoaded($fixtures)
    {
        $this->stdout("Fixtures were successfully loaded from namespace:\n", Console::FG_YELLOW);
        $this->stdout("\t\"" . Yii::getAlias($this->namespace) . "\"\n\n", Console::FG_GREEN);
        $this->outputList($fixtures);
    }