1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-13 14:04:51 +02:00
Files
php-e107/lib/preparers/Preparer.php
Nick Liu c72b08616b Refactored E107Base suite cleanup into "Preparer" classes
Now works with the best of both worlds:

* Barebones cleanup in slow Windows environments
* Git snapshots in other Git environments
2018-09-12 12:54:15 -05:00

7 lines
87 B
PHP

<?php
interface Preparer
{
public function snapshot();
public function rollback();
}