major refactoring under the hood
[pharext/pharext] / src / pharext / Task.php
1 <?php
2
3 namespace pharext;
4
5 /**
6 * Simple task interface
7 */
8 interface Task
9 {
10 public function run($verbose = false);
11 }