Преглед изворни кода

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