summaryrefslogtreecommitdiff
path: root/src/Client/Task/TaskInterface.php
blob: 407e6c80d6c59b9b852ab91dff3c1179ceac1440 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace App\Task;

/**
 * A simple task object that can be executed
 */
interface TaskInterface
{
    public function execute();
}