Jelajahi Sumber

Fix E_STRICT warning in i18n example.

Justin Hileman 13 tahun lalu
induk
melakukan
ee4c52de8f
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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;
     }
 }