ContainerContentDetector.php 464 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Services\History\Detector;
  3. class ContainerContentDetector extends DetectorAbstract
  4. {
  5. public static function fields(): array
  6. {
  7. return [
  8. 'name',
  9. 'description',
  10. 'files',
  11. ];
  12. }
  13. public static function diffFields(): array
  14. {
  15. return [
  16. 'description'
  17. ];
  18. }
  19. public static function converters(): array
  20. {
  21. return [
  22. ];
  23. }
  24. }