Skip to content

Commit 1a3f57d

Browse files
author
Aleksandar Jovanovic
committed
Bug fix
1 parent 53b0be3 commit 1a3f57d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/SimpleArrayLibrary.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,13 @@ public static function isStructureSame($input1, $input2)
473473
return $return;
474474
}
475475

476-
private function compareArrays(array $input1, array $input2)
476+
/**
477+
* @param array $input1
478+
* @param array $input2
479+
*
480+
* @return bool
481+
*/
482+
private static function compareArrays(array $input1, array $input2)
477483
{
478484
foreach ($input1 as $key => $value) {
479485
if (!array_key_exists($key, $input2)) {

0 commit comments

Comments
 (0)