File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,19 +69,19 @@ protected function formatFromRequest(array $conditions): static
69
69
70
70
private function handlerConditionsException (array $ conditions )
71
71
{
72
- if (!is_array ($ conditions )) {
72
+ if (! is_array ($ conditions )) {
73
73
throw new InvalidArgumentException ('Invalid argument request for argument: conditions ' );
74
74
}
75
75
76
76
if (count ($ conditions ) == 0 ) {
77
77
throw new InvalidArgumentException ('The conditions array is empty ' );
78
78
}
79
79
80
- if (!array_key_exists ('logicalOperator ' , $ conditions )) {
80
+ if (! array_key_exists ('logicalOperator ' , $ conditions )) {
81
81
throw InvalidArgumentRequest::make ('logicalOperator ' );
82
82
}
83
83
84
- if (!array_key_exists ('children ' , $ conditions )) {
84
+ if (! array_key_exists ('children ' , $ conditions )) {
85
85
throw InvalidArgumentRequest::make ('children ' );
86
86
}
87
87
}
You can’t perform that action at this time.
0 commit comments