Skip to content

Commit 0a5dd03

Browse files
authored
Merge pull request #93 from lebedevsergey/double_semicolon_f
fix - remove double semicolon
2 parents f7aa315 + 11cf539 commit 0a5dd03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MagicMapTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function &__get($name)
2323
return $this->__arrayOfData[$name];
2424
} else {
2525
$tmp = null;
26-
return $tmp;;
26+
return $tmp;
2727
}
2828
}
2929

@@ -130,4 +130,4 @@ public function __isset($name)
130130
return isset($this->$name);
131131
}
132132
}
133-
}
133+
}

0 commit comments

Comments
 (0)