Files
popsu-d9/old.vendor/consolidation/robo/src/Contract/TaskInterface.php
2022-04-27 11:30:43 +02:00

19 lines
296 B
PHP

<?php
namespace Robo\Contract;
/**
* All Robo tasks should implement this interface.
* Task should be configured by chained methods.
*
* Interface TaskInterface
* @package Robo\Contract
*/
interface TaskInterface
{
/**
* @return \Robo\Result
*/
public function run();
}