luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * JsonLd PropertyValue.
 *
 * @see https://schema.org/PropertyValue
 * @author Basil Suter <basil@nadar.io>
 * @since 1.0.3
 */
class PropertyValue extends BaseThing implements PropertyValueInterface
{
    use PropertyValueTrait;

    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'PropertyValue';
    }
}