cebe / yii2-openapi

REST API application generator for Yii2, openapi 3.0 YAML -> Yii2
MIT License
130 stars 23 forks source link

Model name generated more than once in Faker #148

Closed SOHELAHMED7 closed 1 year ago

SOHELAHMED7 commented 1 year ago
# faker file

...

public static function dependentOn()
{
return [
    'Custmoer',
    'User',
    'User', <---- this is the issue
];
}

...