You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
339 B

<?php
namespace OSM\Element;
class Tag {
public ?string $key;
public ?string $value;
public static function createFromValues(
string $key,
string $value
): static
{
$instance = new self();
$instance->key = $key;
$instance->value = $value;
return $instance;
}
}