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