swaggest/php-json-schema

View on GitHub
src/Meta/AbstractMeta.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema\Meta;


abstract class AbstractMeta
{
    /**
     * @param MetaHolder $schema
     * @return static
     */
    public static function get(MetaHolder $schema)
    {
        return $schema->getMeta(get_called_class());
    }
}