@@ -121,14 +121,14 @@ public static function handle_manipulation($manipulation)
121
121
if ($ table === $ schema ->tableName (Group::class)) {
122
122
$ extendedText = sprintf (
123
123
'Effective permissions: %s ' ,
124
- implode ($ data ->Permissions ()->column ('Code ' ), ' , ' )
124
+ implode (' , ' , $ data ->Permissions ()->column ('Code ' ))
125
125
);
126
126
}
127
127
if ($ table === $ schema ->tableName (PermissionRole::class)) {
128
128
$ extendedText = sprintf (
129
129
'Effective groups: %s, Effective permissions: %s ' ,
130
- implode ($ data ->Groups ()->column ('Title ' ), ' , ' ),
131
- implode ($ data ->Codes ()->column ('Code ' ), ' , ' )
130
+ implode (' , ' , $ data ->Groups ()->column ('Title ' )),
131
+ implode (' , ' , $ data ->Codes ()->column ('Code ' ))
132
132
);
133
133
}
134
134
if ($ table === $ schema ->tableName (PermissionRoleCode::class)) {
@@ -140,7 +140,7 @@ public static function handle_manipulation($manipulation)
140
140
if ($ table === $ schema ->tableName (Member::class)) {
141
141
$ extendedText = sprintf (
142
142
'Effective groups: %s ' ,
143
- implode ($ data ->Groups ()->column ('Title ' ), ' , ' )
143
+ implode (' , ' , $ data ->Groups ()->column ('Title ' ))
144
144
);
145
145
}
146
146
0 commit comments