| 1 | <?php |
||
| 12 | class OutputAdapter implements OutputAdapterInterface, OutputAwareInterface |
||
| 13 | { |
||
| 14 | use OutputAwareTrait; |
||
| 15 | |||
| 16 | protected $verbosityMap = [ |
||
| 17 | VerbosityThresholdInterface::VERBOSITY_NORMAL => OutputInterface::VERBOSITY_NORMAL, |
||
| 18 | VerbosityThresholdInterface::VERBOSITY_VERBOSE => OutputInterface::VERBOSITY_VERBOSE, |
||
| 19 | VerbosityThresholdInterface::VERBOSITY_VERY_VERBOSE => OutputInterface::VERBOSITY_VERY_VERBOSE, |
||
| 20 | VerbosityThresholdInterface::VERBOSITY_DEBUG => OutputInterface::VERBOSITY_DEBUG, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | public function verbosityMeetsThreshold($verbosityThreshold) |
||
| 33 | |||
| 34 | public function writeMessage($message) |
||
| 38 | } |
||
| 39 |