- <?php
- namespace App\Services\History\Converter;
- abstract class NotEagerLoadingConverter implements ConverterContact
- {
- public function isEagerLoading(): bool
- {
- return false;
- }
- public static function eagerLoad(array $items): void
- {
- // TODO: Implement eagerLoad() method.
- }
- }
|