for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Riesenia\Pohoda\Common;
/**
* DTO for element attributes
*/
class ElementAttributes
{
public function __construct(
public readonly string $attrElement = '',
public readonly string $attrName = '',
public readonly ?string $attrNamespace = null,
)
}