Пример #1
0
 /**
  * Test that remove() removes a key.
  */
 public function testRemove()
 {
     $this->assertTrue(Config::has('app.salt'));
     $this->assertTrue(Config::has('debug.email'));
     Config::remove('debug');
     $this->assertTrue(Config::has('app.salt'));
     $this->assertFalse(Config::has('debug.email'));
 }