yii\mongodb\ActiveFixture::getCollectionName PHP 메소드

getCollectionName() 보호된 메소드

Returns collection name used by this fixture.
protected getCollectionName ( ) : array | string
리턴 array | string related collection name
    protected function getCollectionName()
    {
        if ($this->collectionName) {
            return $this->collectionName;
        } else {
            /* @var $modelClass ActiveRecord */
            $modelClass = $this->modelClass;
            return $modelClass::collectionName();
        }
    }