コード例 #1
0
 /**
  * @throws Exception if non-recoverable error
  */
 public function install()
 {
     Model::install();
 }
コード例 #2
0
ファイル: ModelTest.php プロジェクト: dorelljames/piwik
 public function test_uninstall_ShouldNotFailAndRemovesAllAlertTables()
 {
     Model::uninstall();
     $this->assertNotContainTables(array('user_language'));
     Model::install();
 }