Opensoft\Rollout\Storage\MongoDBStorageAdapter::getCollectionName PHP Метод

getCollectionName() публичный Метод

public getCollectionName ( )
    public function getCollectionName()
    {
        return $this->collection;
    }

Usage Example

 public function testGetCollectionName()
 {
     $adapter = new MongoDBStorageAdapter($this->mongo, 'feature_test');
     $result = $adapter->getCollectionName();
     $this->assertSame('feature_test', $result);
 }