Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / output-formatters / src / Formatters / FormatterAwareInterface.php
1 <?php
2 namespace Consolidation\OutputFormatters\Formatters;
3
4 interface FormatterAwareInterface
5 {
6     public function setFormatter(FormatterInterface $formatter);
7     public function getFormatter();
8     public function isHumanReadable();
9 }