| 1 | <?php | ||
| 16 | class NoOutputFormatter implements FormatterInterface, ValidationInterface | ||
| 17 | { | ||
| 18 | /** | ||
| 19 | * All data types are acceptable. | ||
| 20 | */ | ||
| 21 | public function isValidDataType(\ReflectionClass $dataType) | ||
| 25 | |||
| 26 | /** | ||
| 27 | * @inheritdoc | ||
| 28 | */ | ||
| 29 | public function validate($structuredData) | ||
| 33 | |||
| 34 | /** | ||
| 35 | * @inheritdoc | ||
| 36 | */ | ||
| 37 | public function write(OutputInterface $output, $data, FormatterOptions $options) | ||
| 40 | } | ||
| 41 |