for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cryptommer\Smsir\Objects;
class Parameters {
public string $Name;
public string $Value;
public function __construct(string $name, string $value) {
$this->Name = $name;
$this->Value = $value;
}
public function __serialize(): array {
return [
'Name' => $this->Name,
'Value' => $this->Value,
];