HighSpeaker/vendor/illuminate/contracts/Translation/HasLocalePreference.php

14 lines
222 B
PHP
Raw Permalink Normal View History

2022-12-24 19:40:40 +05:30
<?php
namespace Illuminate\Contracts\Translation;
interface HasLocalePreference
{
/**
* Get the preferred locale of the entity.
*
* @return string|null
*/
public function preferredLocale();
}