diff options
author | Fbenas <philbeansburton@gmail.com> | 2018-02-18 22:29:36 +0000 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2018-02-18 22:29:36 +0000 |
commit | 62146c4027e48cfbdb4f518de137de8430392e24 (patch) | |
tree | 791efd0bdccf4f23302428539a0fdc1047502646 /src/Manager/Task/TaskInterface.php | |
parent | 7d2128f364c0e81a15653db2508d3e09b262eca1 (diff) |
Split client and manager
Diffstat (limited to 'src/Manager/Task/TaskInterface.php')
-rw-r--r-- | src/Manager/Task/TaskInterface.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Manager/Task/TaskInterface.php b/src/Manager/Task/TaskInterface.php new file mode 100644 index 0000000..407e6c8 --- /dev/null +++ b/src/Manager/Task/TaskInterface.php @@ -0,0 +1,11 @@ +<?php + +namespace App\Task; + +/** + * A simple task object that can be executed + */ +interface TaskInterface +{ + public function execute(); +} |