10 lines
124 B
PHP
10 lines
124 B
PHP
<?php
|
|
|
|
namespace NoccyLabs\Shell;
|
|
|
|
interface TaskInterface
|
|
{
|
|
public function update();
|
|
|
|
public function isValid();
|
|
} |