فهرست منبع

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;
     }
 }