예제 #1
0
파일: Storage.php 프로젝트: cemo/piwik
 public function deleteValue(Setting $setting)
 {
     $this->toBeDeleted[$setting->getName()] = true;
     parent::deleteValue($setting);
 }
예제 #2
0
 public function test_deleteValue_shouldEstablishADatabaseConnection()
 {
     $this->assertNotDbConnectionCreated();
     $this->storage->deleteValue($this->setting, 5);
     $this->assertDbConnectionCreated();
 }