Quellcode durchsuchen

formatted deprecation message

Oskar Stark vor 8 Jahren
Ursprung
Commit
74a44a787d
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  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'];