allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
64
vendor/moneyphp/money/src/Currency.php
vendored
Normal file
64
vendor/moneyphp/money/src/Currency.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Money;
|
||||
|
||||
use JsonSerializable;
|
||||
|
||||
use function strtoupper;
|
||||
|
||||
/**
|
||||
* Currency Value Object.
|
||||
*
|
||||
* Holds Currency specific data.
|
||||
*
|
||||
* @phpstan-immutable
|
||||
*/
|
||||
final class Currency implements JsonSerializable
|
||||
{
|
||||
/**
|
||||
* Currency code.
|
||||
*
|
||||
* @phpstan-var non-empty-string
|
||||
*/
|
||||
private string $code;
|
||||
|
||||
/**
|
||||
* @phpstan-param non-empty-string $code
|
||||
*
|
||||
* @phpstan-pure
|
||||
*/
|
||||
public function __construct(string $code)
|
||||
{
|
||||
$this->code = strtoupper($code);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the currency code.
|
||||
*
|
||||
* @phpstan-return non-empty-string
|
||||
*/
|
||||
public function getCode(): string
|
||||
{
|
||||
return $this->code;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks whether this currency is the same as an other.
|
||||
*/
|
||||
public function equals(Currency $other): bool
|
||||
{
|
||||
return $this->code === $other->code;
|
||||
}
|
||||
|
||||
public function __toString(): string
|
||||
{
|
||||
return $this->code;
|
||||
}
|
||||
|
||||
public function jsonSerialize(): string
|
||||
{
|
||||
return $this->code;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user