blob: 1b1f16d6e760084f61537b8b19037e8d33719bb2 [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Translation;
interface HasLocalePreference
{
/**
* Get the preferred locale of the entity.
*
* @return string|null
*/
public function preferredLocale();
}