yii\mongodb\Migration::composeCollectionLogName PHP Метод

composeCollectionLogName() защищенный Метод

Composes string representing collection name.
protected composeCollectionLogName ( array | string $collection ) : string
$collection array | string collection name.
Результат string collection name.
    protected function composeCollectionLogName($collection)
    {
        if (is_array($collection)) {
            list($database, $collection) = $collection;
            return $database . '.' . $collection;
        } else {
            return $collection;
        }
    }