12 lines
144 B
PHP
Executable File
12 lines
144 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'delimiters' => ',;',
|
|
|
|
'glue' => ',',
|
|
|
|
'normalizer' => function($str) {
|
|
return str_slug($str, '');
|
|
}
|
|
];
|