luyadev/luya

View on GitHub
core/web/jsonld/Thing.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace luya\web\jsonld;

/**
 * JsonLd - Thing
 *
 * The most generic type of item.
 *
 * @see https://schema.org/Thing
 *
 * @author Alex Schmid
 * @since 1.0.0
 */
class Thing extends BaseThing
{
    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'Thing';
    }
}