HasLocalePreference.php 222 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Translation;
  3. interface HasLocalePreference
  4. {
  5. /**
  6. * Get the preferred locale of the entity.
  7. *
  8. * @return string|null
  9. */
  10. public function preferredLocale();
  11. }