File "MetadataStub.php"

Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/unit/phpDocumentor/Reflection/Php/MetadataStub.php
File size: 320 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace phpDocumentor\Reflection\Php;

use phpDocumentor\Reflection\Metadata\Metadata;

final class MetadataStub implements Metadata
{
    public function __construct(private readonly string $key)
    {
    }

    public function key(): string
    {
        return $this->key;
    }
}