Files
icehrm/lib/composer/vendor/consolidation/robo/src/Contract/SimulatedInterface.php
2017-09-03 20:39:22 +02:00

19 lines
417 B
PHP

<?php
namespace Robo\Contract;
/**
* Task that implements this interface can be injected as a parameter for other task.
* This task can be represented as executable command.
*
* @package Robo\Contract
*/
interface SimulatedInterface extends TaskInterface
{
/**
* Called in place of `run()` for simulated tasks.
*
* @param null|array $context
*/
public function simulate($context);
}