瀏覽代碼

Removed method signature change

WouterJ 8 年之前
父節點
當前提交
1464457d43
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      Admin/AbstractAdmin.php

+ 3 - 2
Admin/AbstractAdmin.php

@@ -2172,9 +2172,10 @@ EOT;
      *
      *
      * @deprecated since 3.9, to be removed with 4.0
      * @deprecated since 3.9, to be removed with 4.0
      */
      */
-    public function setTranslator(TranslatorInterface $translator, $deprecation = true)
+    public function setTranslator(TranslatorInterface $translator)
     {
     {
-        if ($deprecation) {
+        $args = func_get_args();
+        if (isset($args[1]) && $args[1]) {
             @trigger_error(
             @trigger_error(
                 'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
                 'The '.__METHOD__.' method is deprecated since version 3.9 and will be removed in 4.0.',
                 E_USER_DEPRECATED
                 E_USER_DEPRECATED