More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / consolidation / robo / src / Contract / IOAwareInterface.php
1 <?php
2
3 /**
4  * Marker interface for tasks that use the IO trait
5  */
6
7 namespace Robo\Contract;
8
9 use \Symfony\Component\Console\Input\InputAwareInterface;
10
11 interface IOAwareInterface extends OutputAwareInterface, InputAwareInterface
12 {
13 }