public function testSettingInvalidConfigurationPathsDoNotTriggerAnExceptionWhenForcePlaceIsSetEvenForDeepPaths()
 {
     $val = uniqid();
     $this->conf->setDirectory(__DIR__);
     $this->conf->set('configuration6:path', []);
     $this->conf->set('configuration6:path:one:two:three:four:invalid', $val, true);
     $this->assertEquals($val, $this->conf->get('configuration6:path:one:two:three:four:invalid'));
     $this->conf->set('configuration6:path', []);
 }