Skip to content

Commit

Permalink
Chore psalm
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsmithies committed Nov 17, 2022
1 parent 3b3596f commit c1f9188
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Models/NFT/NonFungibleToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ public function setName(string $name): void
}

/**
* @return String
* @return Int
*/
public function getSupply(): string
public function getSupply(): Int
{
return $this->supply;
}

/**
* @param String $supply
* @param Int $supply
*/
public function setSupply(string $supply): void
public function setSupply(int $supply): void
{
$this->supply = $supply;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Utilities/Hmac.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Hmac
* Generate a HMAC from request content to validate that a payload matches with a x-signature
*
* @link https://github.com/symfony/http-foundation/blob/master/Request.php#L1535 Documentation of Foo.
* @var string|resource|false|null
* @param $content
* @return string
*/
public static function generate($content): string
Expand Down

0 comments on commit c1f9188

Please sign in to comment.