Skip to content

Commit c04073a

Browse files
committed
- Fixed: Non-static method Kir\MySQL\Builder\Helpers\FieldValueConverter::convertValue() should not be called statically
1 parent aef970a commit c04073a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder/Helpers/FieldValueConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static function convertValues(array $row, array $columnDefinitions) {
2121
* @param string $type
2222
* @return mixed
2323
*/
24-
private function convertValue($value, $type) {
24+
private static function convertValue($value, $type) {
2525
switch ($type) {
2626
case 'i':
2727
return (int) $value;

0 commit comments

Comments
 (0)