fuc/vendor/illuminate/contracts/Translation/HasLocalePreference.php
2025-02-23 13:30:57 +08:00

14 lines
222 B
PHP
Executable File

<?php
namespace Illuminate\Contracts\Translation;
interface HasLocalePreference
{
/**
* Get the preferred locale of the entity.
*
* @return string|null
*/
public function preferredLocale();
}