Files
pancake/system/vendor/illuminate/contracts/Translation/HasLocalePreference.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05: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();
}