浏览代码

Fix E_STRICT warning in i18n example.

Justin Hileman 13 年之前
父节点
当前提交
ee4c52de8f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/i18n/I18n.php

+ 1 - 1
examples/i18n/I18n.php

@@ -14,7 +14,7 @@ class I18n {
         'My name is {{ name }}.' => 'Me llamo {{ name }}.',
     );
 
-    public function __trans($text) {
+    public static function __trans($text) {
         return isset(self::$dictionary[$text]) ? self::$dictionary[$text] : $text;
     }
 }