Open pounard opened 3 years ago
Reviewing some older commits I noticed this:
return \str_starts_with($value, '(') && \str_starts_with($value, ')') && ($sqlType === 'record' || $sqlType === 'row');
This just cannot work, second call should be str_ends_with().
str_ends_with()
Reviewing some older commits I noticed this:
This just cannot work, second call should be
str_ends_with()
.