for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Db\Command;
final class Param implements ParamInterface
{
public function __construct(private int|string $name, private mixed $value, private int $type)
}
public function getName(): int|string
return $this->name;
public function getValue(): mixed
return $this->value;
public function getType(): int
return $this->type;