The Rise of Contactless Payments:...
In recent years, contactless payments have surged in popularity, driven...
<?php
declare(strict_types=1);
namespace Termwind\ValueObjects;
use Closure;
use Termwind\Actions\StyleToMethod;
use Termwind\Exceptions\InvalidColor;
/**
* @internal
*/
final class Style
{
/**
* Creates a new value object instance.
*
* @param Closure(Styles $styles, string|int ...$argument): Styles $callback
*/
public function __construct(private Closure $callback, private string $color = '')
{
// ..
}
/**
* Apply the given set of styles to the styles.
*/
public function apply(string $styles): void
{
$callback = clone $this->callback;
$this->callback = static function (
Styles $formatter,
string|int ...$arguments
) use ($callback, $styles): Styles {
$formatter = $callback($formatter, ...$arguments);
return StyleToMethod::multiple($formatter, $styles);
};
}
/**
* Sets the color to the style.
*/
public function color(string $color): void
{
if (preg_match('/^#([A-Fa-f0-9]{6}|[A-Fa-f0-9]{3})$/', $color) < 1) {
throw new InvalidColor(sprintf('The color %s is invalid.', $color));
}
$this->color = $color;
}
/**
* Gets the color.
*/
public function getColor(): string
{
return $this->color;
}
/**
* Styles the given formatter with this style.
*/
public function __invoke(Styles $styles, string|int ...$arguments): Styles
{
return ($this->callback)($styles, ...$arguments);
}
}
Blog Section
Dive into our blog to explore the cutting-edge trends in digital payments and NFC technology. Stay updated on the innovations that are revolutionizing transactions, boosting security, and making payments quicker and more convenient. Learn how these advancements are shaping the future of financial interactions and driving the global transition towards a cashless world.
In recent years, contactless payments have surged in popularity, driven...
As digital transactions proliferate, ensuring robust payment security is more critical than ever. Two foundational...
Digital wallets have fundamentally transformed how we manage money, offering a streamlined, secure, and highly...