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

notifyNotFound() private method

Notifies user that fixtures were not found under fixtures path.
private notifyNotFound ( array $fixtures )
$fixtures array
    private function notifyNotFound($fixtures)
    {
        $this->stdout("Some fixtures were not found under path:\n", Console::BG_RED);
        $this->stdout("\t" . $this->getFixturePath() . "\n\n", Console::FG_GREEN);
        $this->stdout("Check that they have correct namespace \"{$this->namespace}\" \n", Console::BG_RED);
        $this->outputList($fixtures);
        $this->stdout("\n");
    }