Skip to content

Commit

Permalink
Merge pull request #67 from Hi-Folks/fix/64-merge-arrays
Browse files Browse the repository at this point in the history
v0.1.5
  • Loading branch information
roberto-butti authored Oct 21, 2020
2 parents 69f2ff2 + a494495 commit 969d3e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.1.5 - 2020-10-21

### Fix
- Fix issue with array merge/append for alphanumeric

## 0.1.4 - 2020-10-14 HACKTOBERFEST 2020 - 2

### Add
Expand Down
2 changes: 1 addition & 1 deletion src/Models/Char.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function numeric()
*/
public function alphanumeric(): Char
{
$this->ascii_codes = array_merge(range(48, 57) , range(97, 122));
$this->ascii_codes = array_merge(range(48, 57), range(97, 122));
return $this;
}

Expand Down

0 comments on commit 969d3e6

Please sign in to comment.