chore: skip array list

This commit is contained in:
Maurizio
2023-08-19 10:27:02 +02:00
parent 478144fb35
commit f8dd286213
5 changed files with 32 additions and 4 deletions

View File

@ -11,6 +11,11 @@ $array = [
'camel' => true,
'camelCase' => true,
],
'list' => [
'abc',
'def',
'ghi',
],
],
];

View File

@ -11,6 +11,11 @@ $array = [
'kebab' => true,
'kebab-case' => true,
],
'list' => [
'abc',
'def',
'ghi',
],
],
];

View File

@ -11,6 +11,11 @@ $array = [
'snake' => true,
'snake_case' => true,
],
'list' => [
'abc',
'def',
'ghi',
],
],
];

View File

@ -11,6 +11,11 @@ $array = [
'Studly' => true,
'StudlyCase' => true,
],
'List' => [
'abc',
'def',
'ghi',
],
],
];