Skip to content

Commit e2f67af

Browse files
committed
fixed cs
1 parent e90bce8 commit e2f67af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ValuePreparer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function prepare($data)
6464
$value = $data->{$this->name};
6565
} elseif (is_array($data)) {
6666
$value = ArrayHelper::getValue($data, $this->name, null);
67-
} else if(is_string($data) || is_numeric($data)) {
67+
} elseif(is_string($data) || is_numeric($data)) {
6868
$value = $data;
6969
}
7070

0 commit comments

Comments
 (0)