- changed status to resolved
If creating an instance of Po with an indexed array, it should create the instance with those elements as fields, but with a default assignment of null.
<?php
$sample = new Hyphen\Types\Po(["one", "two", "three"]);
print_r($sample->one); // Should be null.
print_r($sample->two); // Should be null.
print_r($sample->three); // Should be null.
Resolved with commit 6a730f3389529f98c2f57806f0c691b5454311bb.