826f4b96c2118567b562b6c3e46913b9f60f11db
[yaffs-website] / vendor / consolidation / robo / src / Contract / SimulatedInterface.php
1 <?php
2 namespace Robo\Contract;
3
4 /**
5  * Task that implements this interface can be injected as a parameter for other task.
6  * This task can be represented as executable command.
7  *
8  * @package Robo\Contract
9  */
10 interface SimulatedInterface extends TaskInterface
11 {
12     /**
13      * Called in place of `run()` for simulated tasks.
14      *
15      * @param null|array $context
16      */
17     public function simulate($context);
18 }