Example #1
0
 public function testCall()
 {
     $config = new ConfigManager(new Repository());
     $config->set('foo', 'bar');
     $this->assertSame(1, count($config->getKeys()));
     $config->setLoader($this->fileloader);
     $this->assertInstanceOf(TaggableParser::class, $config->getParser());
 }