EagerLoadingConverter.php 195 B

1234567891011
  1. <?php
  2. namespace App\Services\History\Converter;
  3. abstract class EagerLoadingConverter implements ConverterContact
  4. {
  5. public function isEagerLoading(): bool
  6. {
  7. return true;
  8. }
  9. }