Remove releasenotes from build.xml
[phorkie.git] / src / phorkie / Database / ISetup.php
1 <?php
2 namespace phorkie;
3
4 interface Database_ISetup
5 {
6     public function setup();
7     public function reset();
8 }
9
10 ?>