Skip to content

Commit

Permalink
Change getsignature and getsalt function into static
Browse files Browse the repository at this point in the history
  • Loading branch information
insomnius committed Mar 13, 2018
1 parent b0ccf57 commit 06309a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Aurphm/Aurphm.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public static function list()
* @param string $AURPHM
* @return string
*/
protected function getSalt($AURPHM)
protected static function getSalt($AURPHM)
{
$validationArray = explode(".", $AURPHM);

Expand All @@ -163,7 +163,7 @@ protected function getSalt($AURPHM)
* @param string $AURPHM
* @return string
*/
protected function getSignature($AURPHM)
protected static function getSignature($AURPHM)
{
$validationArray = explode(".", $AURPHM);
$signature = $validationArray[2];
Expand Down

0 comments on commit 06309a1

Please sign in to comment.