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

notifyUnloaded() private method

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