Skip to content

Commit 8fb270a

Browse files
committed
chore: fix styling
1 parent 0ee4911 commit 8fb270a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Form.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,12 @@ public static function validate(array $data, array $rules)
245245
public static function getDotNotatedValue($array, $key)
246246
{
247247
$keys = explode('.', $key);
248+
248249
foreach ($keys as $k) {
249250
if (!isset($array[$k])) {
250251
return null;
251252
}
253+
252254
$array = $array[$k];
253255
}
254256

0 commit comments

Comments
 (0)