File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -32,4 +32,14 @@ public function isPublished(?ElementInterface $element = null): bool
3232 {
3333 return Service::isPublished ($ element );
3434 }
35+
36+ public function escapeCsvRecord (array $ rowData ): array
37+ {
38+ return Service::escapeCsvRecord ($ rowData );
39+ }
40+
41+ public function unEscapeCsvRecord (array $ rowData ): array
42+ {
43+ return Service::unEscapeCsvRecord ($ rowData );
44+ }
3545}
Original file line number Diff line number Diff line change @@ -26,4 +26,8 @@ interface ServiceResolverInterface extends ServiceResolverContractInterface
2626 public function findForbiddenPaths (string $ type , User $ user ): array ;
2727
2828 public function isPublished (?ElementInterface $ element = null ): bool ;
29+
30+ public function escapeCsvRecord (array $ rowData ): array ;
31+
32+ public function unEscapeCsvRecord (array $ rowData ): array ;
2933}
You can’t perform that action at this time.
0 commit comments