mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
chore: skip array list
This commit is contained in:
@ -753,7 +753,9 @@ final class Expectation
|
||||
}
|
||||
|
||||
foreach ($this->value as $k => $item) {
|
||||
$this->and($k)->toBeSnakeCase($message);
|
||||
if (is_string($k)) {
|
||||
$this->and($k)->toBeSnakeCase($message);
|
||||
}
|
||||
|
||||
if (is_array($item)) {
|
||||
$this->and($item)->toHaveSnakeCaseKeys($message);
|
||||
@ -775,7 +777,9 @@ final class Expectation
|
||||
}
|
||||
|
||||
foreach ($this->value as $k => $item) {
|
||||
$this->and($k)->toBeKebabCase($message);
|
||||
if (is_string($k)) {
|
||||
$this->and($k)->toBeKebabCase($message);
|
||||
}
|
||||
|
||||
if (is_array($item)) {
|
||||
$this->and($item)->toHaveKebabCaseKeys($message);
|
||||
@ -797,7 +801,9 @@ final class Expectation
|
||||
}
|
||||
|
||||
foreach ($this->value as $k => $item) {
|
||||
$this->and($k)->toBeCamelCase($message);
|
||||
if (is_string($k)) {
|
||||
$this->and($k)->toBeCamelCase($message);
|
||||
}
|
||||
|
||||
if (is_array($item)) {
|
||||
$this->and($item)->toHaveCamelCaseKeys($message);
|
||||
@ -819,7 +825,9 @@ final class Expectation
|
||||
}
|
||||
|
||||
foreach ($this->value as $k => $item) {
|
||||
$this->and($k)->toBeStudlyCase($message);
|
||||
if (is_string($k)) {
|
||||
$this->and($k)->toBeStudlyCase($message);
|
||||
}
|
||||
|
||||
if (is_array($item)) {
|
||||
$this->and($item)->toHaveStudlyCaseKeys($message);
|
||||
|
||||
@ -11,6 +11,11 @@ $array = [
|
||||
'camel' => true,
|
||||
'camelCase' => true,
|
||||
],
|
||||
'list' => [
|
||||
'abc',
|
||||
'def',
|
||||
'ghi',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@ $array = [
|
||||
'kebab' => true,
|
||||
'kebab-case' => true,
|
||||
],
|
||||
'list' => [
|
||||
'abc',
|
||||
'def',
|
||||
'ghi',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@ $array = [
|
||||
'snake' => true,
|
||||
'snake_case' => true,
|
||||
],
|
||||
'list' => [
|
||||
'abc',
|
||||
'def',
|
||||
'ghi',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
@ -11,6 +11,11 @@ $array = [
|
||||
'Studly' => true,
|
||||
'StudlyCase' => true,
|
||||
],
|
||||
'List' => [
|
||||
'abc',
|
||||
'def',
|
||||
'ghi',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user