Skip to content

Commit

Permalink
Fixed - php code syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiIgna committed Jul 7, 2019
1 parent f9e1727 commit 4b886fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function getMarketUrl($path = '') {
}

public function getLicenseKey() {
$name = str_replace('-', '_', strtoupper($this->slug . '_' . $this->type . '_license_key'))
$name = str_replace('-', '_', strtoupper($this->slug . '_' . $this->type . '_license_key'));

return defined($name) ? constant($name) : null;
}
Expand Down

0 comments on commit 4b886fe

Please sign in to comment.