123456789101112131415161718192021 |
- <?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);
- }
|