for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace kalanis\Pohoda\Common\Attributes;
use Attribute;
/**
* The variable is used as representation of different one
*/
#[Attribute(Attribute::TARGET_PROPERTY)]
final class Represents
{
* @param string|string[] $differentVariable
public function __construct(
public readonly string|array $differentVariable,
) {}
}