25 require_once(
'./libs/composer/vendor/autoload.php');
39 protected function setUp() : void
49 $this->meta_content->addMetaDatum($key, $value);
50 $collection = $this->meta_content->getMetaData();
52 $first_item = iterator_to_array($collection->getItems())[0];
53 $this->assertInstanceOf(MetaDatum::class, $first_item);
54 $this->assertEquals($key, $first_item->getKey());
55 $this->assertEquals($value, $first_item->getValue());
PhpIncompatibleReturnTypeInspection