ReporterBase.php 154 B

12345678
  1. <?php
  2. namespace Fgm\ComposerCheck;
  3. abstract class ReporterBase implements ReporterInterface {
  4. public abstract function report(MergeBox $mergeBox);
  5. }