getConfigType() public méthode

what type of content are we a list of?
public getConfigType ( ) : string
Résultat string
 /**
  * @covers DataSift\Storyplayer\ConfigLib\ConfigList::__construct
  * @covers DataSift\Storyplayer\ConfigLib\ConfigList::getConfigType
  * @covers DataSift\Storyplayer\ConfigLib\ConfigList::setConfigType
  */
 public function testCanGetListedConfigType()
 {
     // ----------------------------------------------------------------
     // setup the test
     $expected = "DataSift\\Storyplayer\\ConfigLib\\WrappedConfig";
     // ----------------------------------------------------------------
     // perform the change
     $obj = new ConfigList($expected, __DIR__ . '/ConfigListTestData1');
     // ----------------------------------------------------------------
     // test the results
     $actual = $obj->getConfigType();
     $this->assertEquals($expected, $actual);
 }