浏览代码

formatted deprecation message

Oskar Stark 8 年之前
父节点
当前提交
74a44a787d
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      Datagrid/ListMapper.php

+ 5 - 1
Datagrid/ListMapper.php

@@ -78,7 +78,11 @@ class ListMapper extends BaseMapper
         // Change deprecated inline action "view" to "show"
         if ($name == '_action' && $type == 'actions') {
             if (isset($fieldDescriptionOptions['actions']['view'])) {
-                @trigger_error('Inline action "view" is deprecated since version 2.2.4 and will be removed in 4.0. Use inline action "show" instead.', E_USER_DEPRECATED);
+                @trigger_error(
+                    'Inline action "view" is deprecated since version 2.2.4 and will be removed in 4.0. '
+                    .'Use inline action "show" instead.',
+                    E_USER_DEPRECATED
+                );
 
                 $fieldDescriptionOptions['actions']['show'] = $fieldDescriptionOptions['actions']['view'];