php-shell/lib/TaskInterface.php

10 lines
124 B
PHP

<?php
namespace NoccyLabs\Shell;
interface TaskInterface
{
public function update();
public function isValid();
}