<?php namespace Fgm\ComposerCheck; /** * Interface ReporterInterface specifies the Reporter classes contract. */ interface ReporterInterface { /** * Format a report on a set of packages. * * @param \Fgm\ComposerCheck\MergeBox $mergeBox * A merge box containing reconciled requirements and locked versions. * * @return string * The formatted report. */ public function report(MergeBox $mergeBox); }