948d384cba8e1dfcdf272b449aa270785a5fa67d
[yaffs-website] / vendor / consolidation / robo / src / Contract / OutputAdapterInterface.php
1 <?php
2 namespace Robo\Contract;
3
4 /**
5  * Adapt OutputInterface or other output function to the VerbosityThresholdInterface.
6  */
7 interface OutputAdapterInterface
8 {
9     public function verbosityMeetsThreshold($verbosityThreshold);
10     public function writeMessage($message);
11 }