mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-04 23:11:01 +08:00
15 lines
205 B
PHP
15 lines
205 B
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
/**
|
|
* Trait StaticMake
|
|
*/
|
|
trait TranslateWithPluginId
|
|
{
|
|
public static function trans($name): string
|
|
{
|
|
return nexus_trans(static::ID . "::{$name}");
|
|
}
|
|
}
|