blob: 1b1f16d6e760084f61537b8b19037e8d33719bb2 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Translation;
4
5interface HasLocalePreference
6{
7 /**
8 * Get the preferred locale of the entity.
9 *
10 * @return string|null
11 */
12 public function preferredLocale();
13}