[李景山php]每天laravel-20161025|LoaderInterface.php

来源:互联网 发布:ai软件基础工具教程 编辑:程序博客网 时间:2024/05/16 18:04
<?phpnamespace Illuminate\Translation;interface LoaderInterface{// a trait like loader    /**     * Load the messages for the given locale.     *     * @param  string  $locale     * @param  string  $group     * @param  string  $namespace     * @return array     */    public function load($locale, $group, $namespace = null);//    // to load the messages for the given locale.    /**     * Add a new namespace to the loader.     *     * @param  string  $namespace     * @param  string  $hint     * @return void     */    public function addNamespace($namespace, $hint);    //addNamespace add a new namespace to the loader.}
0 0
原创粉丝点击